├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── extension ├── icons │ ├── icon-48.png │ └── icon-64.png ├── manifest.json ├── popup │ ├── options.css │ ├── options.html │ └── options.js ├── scripts │ ├── background.js │ └── content.js └── sounds │ └── pop.mp3 ├── images ├── 1.png ├── 2.png ├── 3.png └── 4.png └── pack.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | fast_copy_links.xpi 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/README.md -------------------------------------------------------------------------------- /extension/icons/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/icons/icon-48.png -------------------------------------------------------------------------------- /extension/icons/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/icons/icon-64.png -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /extension/popup/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/popup/options.css -------------------------------------------------------------------------------- /extension/popup/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/popup/options.html -------------------------------------------------------------------------------- /extension/popup/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/popup/options.js -------------------------------------------------------------------------------- /extension/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/scripts/background.js -------------------------------------------------------------------------------- /extension/scripts/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/scripts/content.js -------------------------------------------------------------------------------- /extension/sounds/pop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/extension/sounds/pop.mp3 -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/images/4.png -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdSpirit0/FastCopyLinks/HEAD/pack.sh --------------------------------------------------------------------------------