├── .gitignore ├── LICENSE ├── README.md ├── bootstrap.js ├── icon.png ├── install.rdf ├── make_glmask.js ├── release.cmd └── update.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | *.exe 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/github-wc-polyfill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/github-wc-polyfill/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/github-wc-polyfill/HEAD/bootstrap.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/github-wc-polyfill/HEAD/icon.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/github-wc-polyfill/HEAD/install.rdf -------------------------------------------------------------------------------- /make_glmask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/github-wc-polyfill/HEAD/make_glmask.js -------------------------------------------------------------------------------- /release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/github-wc-polyfill/HEAD/release.cmd -------------------------------------------------------------------------------- /update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/github-wc-polyfill/HEAD/update.xml --------------------------------------------------------------------------------