├── .gitignore ├── README.md ├── assets └── how_to_use.gif └── simple-url-copy ├── icons ├── 128.png ├── 16.png ├── 32.png ├── 64.png └── icon4store.png ├── manifest.json ├── popup.css ├── popup.html └── popup.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.crx 2 | *.pem 3 | *.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/README.md -------------------------------------------------------------------------------- /assets/how_to_use.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/assets/how_to_use.gif -------------------------------------------------------------------------------- /simple-url-copy/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/icons/128.png -------------------------------------------------------------------------------- /simple-url-copy/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/icons/16.png -------------------------------------------------------------------------------- /simple-url-copy/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/icons/32.png -------------------------------------------------------------------------------- /simple-url-copy/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/icons/64.png -------------------------------------------------------------------------------- /simple-url-copy/icons/icon4store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/icons/icon4store.png -------------------------------------------------------------------------------- /simple-url-copy/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/manifest.json -------------------------------------------------------------------------------- /simple-url-copy/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/popup.css -------------------------------------------------------------------------------- /simple-url-copy/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/popup.html -------------------------------------------------------------------------------- /simple-url-copy/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikedaosushi/simple-url-copy/HEAD/simple-url-copy/popup.js --------------------------------------------------------------------------------