├── .gitignore ├── README.md ├── Readability.js ├── advanced-popup.html ├── advanced-popup.js ├── background.js ├── background.js.bak ├── background.js.bak2 ├── background.js.bak3 ├── content-script.js ├── cool.md ├── icon.png ├── icons ├── icon.svg ├── icon128.png ├── icon128_success.png ├── icon128_success.svg ├── icon16.png ├── icon16_success.png ├── icon16_success.svg ├── icon48.png ├── icon48_success.png ├── icon48_success.svg ├── icon_large.svg ├── new_icon.svg └── original_icon.png ├── manifest.json ├── popup.html ├── popup.js ├── rules.md └── styles.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/README.md -------------------------------------------------------------------------------- /Readability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/Readability.js -------------------------------------------------------------------------------- /advanced-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/advanced-popup.html -------------------------------------------------------------------------------- /advanced-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/advanced-popup.js -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/background.js -------------------------------------------------------------------------------- /background.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/background.js.bak -------------------------------------------------------------------------------- /background.js.bak2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/background.js.bak2 -------------------------------------------------------------------------------- /background.js.bak3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/background.js.bak3 -------------------------------------------------------------------------------- /content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/content-script.js -------------------------------------------------------------------------------- /cool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/cool.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icon.png -------------------------------------------------------------------------------- /icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/icon.svg -------------------------------------------------------------------------------- /icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/icon128.png -------------------------------------------------------------------------------- /icons/icon128_success.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /icons/icon128_success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/icon128_success.svg -------------------------------------------------------------------------------- /icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/icon16.png -------------------------------------------------------------------------------- /icons/icon16_success.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /icons/icon16_success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/icon16_success.svg -------------------------------------------------------------------------------- /icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/icon48.png -------------------------------------------------------------------------------- /icons/icon48_success.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /icons/icon48_success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/icon48_success.svg -------------------------------------------------------------------------------- /icons/icon_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/icon_large.svg -------------------------------------------------------------------------------- /icons/new_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/new_icon.svg -------------------------------------------------------------------------------- /icons/original_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/icons/original_icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/popup.js -------------------------------------------------------------------------------- /rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/rules.md -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeseesun/EasyCopy/HEAD/styles.css --------------------------------------------------------------------------------