├── LICENSE ├── README.md └── source ├── _locales ├── en_US │ └── messages.json └── it │ └── messages.json ├── img └── icon.svg ├── js └── action.js ├── manifest.json └── options ├── options.css ├── options.html └── options.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/README.md -------------------------------------------------------------------------------- /source/_locales/en_US/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/source/_locales/en_US/messages.json -------------------------------------------------------------------------------- /source/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/source/_locales/it/messages.json -------------------------------------------------------------------------------- /source/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/source/img/icon.svg -------------------------------------------------------------------------------- /source/js/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/source/js/action.js -------------------------------------------------------------------------------- /source/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/source/manifest.json -------------------------------------------------------------------------------- /source/options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/source/options/options.css -------------------------------------------------------------------------------- /source/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/source/options/options.html -------------------------------------------------------------------------------- /source/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichelePezza/CopyAllTabUrls/HEAD/source/options/options.js --------------------------------------------------------------------------------