├── LICENSE ├── README.md ├── background.js ├── content.js ├── docs └── design │ └── releasing.md ├── env.json ├── icons ├── 128.png ├── 48.png └── 96.png ├── lib └── getPlugins.js ├── manifest.json └── popup ├── index.css ├── index.html └── index.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/background.js -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/content.js -------------------------------------------------------------------------------- /docs/design/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/docs/design/releasing.md -------------------------------------------------------------------------------- /env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/env.json -------------------------------------------------------------------------------- /icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/icons/128.png -------------------------------------------------------------------------------- /icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/icons/48.png -------------------------------------------------------------------------------- /icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/icons/96.png -------------------------------------------------------------------------------- /lib/getPlugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/lib/getPlugins.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/manifest.json -------------------------------------------------------------------------------- /popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/popup/index.css -------------------------------------------------------------------------------- /popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/popup/index.html -------------------------------------------------------------------------------- /popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymod-org/polymod/HEAD/popup/index.js --------------------------------------------------------------------------------