├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── v2 ├── chrome │ ├── _locales │ ├── background.js │ ├── data │ ├── manifest.json │ └── safe.js └── firefox │ ├── _locales │ ├── de │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── it │ │ └── messages.json │ ├── nl │ │ └── messages.json │ ├── pt_BR │ │ └── messages.json │ └── ru │ │ └── messages.json │ ├── background.js │ ├── data │ ├── dialog │ │ ├── index.html │ │ └── index.js │ ├── discard │ │ ├── icon.png │ │ ├── index.html │ │ └── index.js │ ├── drop │ │ ├── index.html │ │ └── index.js │ ├── editor │ │ ├── drag.svg │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ ├── trash.svg │ │ └── vendor │ │ │ ├── README │ │ │ └── Sortable.js │ ├── icons │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 19.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 38.png │ │ ├── 48.png │ │ └── 64.png │ └── popup │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ ├── locked.svg │ │ ├── overwrite.svg │ │ ├── preview.svg │ │ ├── remove.svg │ │ └── unlock.svg │ ├── manifest.json │ └── safe.js └── v3 ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json ├── es │ └── messages.json ├── fr │ └── messages.json ├── it │ └── messages.json ├── nl │ └── messages.json ├── pt_BR │ └── messages.json └── ru │ └── messages.json ├── data ├── dialog │ ├── index.css │ ├── index.html │ └── index.js ├── discard │ ├── icon.png │ ├── index.css │ ├── index.html │ └── index.js ├── drop │ ├── index.html │ └── index.js ├── editor │ ├── drag.svg │ ├── index.css │ ├── index.html │ ├── index.js │ ├── trash.svg │ └── vendor │ │ ├── README │ │ └── Sortable.js ├── icons │ ├── 128.png │ ├── 16.png │ ├── 19.png │ ├── 256.png │ ├── 32.png │ ├── 38.png │ ├── 48.png │ └── 64.png └── popup │ ├── index.css │ ├── index.html │ ├── index.js │ ├── locked.svg │ ├── overwrite.svg │ ├── preview.svg │ ├── remove.svg │ ├── rename.svg │ └── unlock.svg ├── manifest.json ├── safe.js └── worker.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/README.md -------------------------------------------------------------------------------- /v2/chrome/_locales: -------------------------------------------------------------------------------- 1 | ../firefox/_locales -------------------------------------------------------------------------------- /v2/chrome/background.js: -------------------------------------------------------------------------------- 1 | ../firefox/background.js -------------------------------------------------------------------------------- /v2/chrome/data: -------------------------------------------------------------------------------- 1 | ../firefox/data -------------------------------------------------------------------------------- /v2/chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/chrome/manifest.json -------------------------------------------------------------------------------- /v2/chrome/safe.js: -------------------------------------------------------------------------------- 1 | ../firefox/safe.js -------------------------------------------------------------------------------- /v2/firefox/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/_locales/de/messages.json -------------------------------------------------------------------------------- /v2/firefox/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/_locales/en/messages.json -------------------------------------------------------------------------------- /v2/firefox/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/_locales/es/messages.json -------------------------------------------------------------------------------- /v2/firefox/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/_locales/fr/messages.json -------------------------------------------------------------------------------- /v2/firefox/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/_locales/it/messages.json -------------------------------------------------------------------------------- /v2/firefox/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/_locales/nl/messages.json -------------------------------------------------------------------------------- /v2/firefox/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /v2/firefox/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/_locales/ru/messages.json -------------------------------------------------------------------------------- /v2/firefox/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/background.js -------------------------------------------------------------------------------- /v2/firefox/data/dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/dialog/index.html -------------------------------------------------------------------------------- /v2/firefox/data/dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/dialog/index.js -------------------------------------------------------------------------------- /v2/firefox/data/discard/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/discard/icon.png -------------------------------------------------------------------------------- /v2/firefox/data/discard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/discard/index.html -------------------------------------------------------------------------------- /v2/firefox/data/discard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/discard/index.js -------------------------------------------------------------------------------- /v2/firefox/data/drop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/drop/index.html -------------------------------------------------------------------------------- /v2/firefox/data/drop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/drop/index.js -------------------------------------------------------------------------------- /v2/firefox/data/editor/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/editor/drag.svg -------------------------------------------------------------------------------- /v2/firefox/data/editor/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/editor/index.css -------------------------------------------------------------------------------- /v2/firefox/data/editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/editor/index.html -------------------------------------------------------------------------------- /v2/firefox/data/editor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/editor/index.js -------------------------------------------------------------------------------- /v2/firefox/data/editor/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/editor/trash.svg -------------------------------------------------------------------------------- /v2/firefox/data/editor/vendor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/editor/vendor/README -------------------------------------------------------------------------------- /v2/firefox/data/editor/vendor/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/editor/vendor/Sortable.js -------------------------------------------------------------------------------- /v2/firefox/data/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/icons/128.png -------------------------------------------------------------------------------- /v2/firefox/data/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/icons/16.png -------------------------------------------------------------------------------- /v2/firefox/data/icons/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/icons/19.png -------------------------------------------------------------------------------- /v2/firefox/data/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/icons/256.png -------------------------------------------------------------------------------- /v2/firefox/data/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/icons/32.png -------------------------------------------------------------------------------- /v2/firefox/data/icons/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/icons/38.png -------------------------------------------------------------------------------- /v2/firefox/data/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/icons/48.png -------------------------------------------------------------------------------- /v2/firefox/data/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/icons/64.png -------------------------------------------------------------------------------- /v2/firefox/data/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/popup/index.css -------------------------------------------------------------------------------- /v2/firefox/data/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/popup/index.html -------------------------------------------------------------------------------- /v2/firefox/data/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/popup/index.js -------------------------------------------------------------------------------- /v2/firefox/data/popup/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/popup/locked.svg -------------------------------------------------------------------------------- /v2/firefox/data/popup/overwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/popup/overwrite.svg -------------------------------------------------------------------------------- /v2/firefox/data/popup/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/popup/preview.svg -------------------------------------------------------------------------------- /v2/firefox/data/popup/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/popup/remove.svg -------------------------------------------------------------------------------- /v2/firefox/data/popup/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/data/popup/unlock.svg -------------------------------------------------------------------------------- /v2/firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/manifest.json -------------------------------------------------------------------------------- /v2/firefox/safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v2/firefox/safe.js -------------------------------------------------------------------------------- /v3/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/_locales/de/messages.json -------------------------------------------------------------------------------- /v3/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/_locales/en/messages.json -------------------------------------------------------------------------------- /v3/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/_locales/es/messages.json -------------------------------------------------------------------------------- /v3/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/_locales/fr/messages.json -------------------------------------------------------------------------------- /v3/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/_locales/it/messages.json -------------------------------------------------------------------------------- /v3/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/_locales/nl/messages.json -------------------------------------------------------------------------------- /v3/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /v3/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/_locales/ru/messages.json -------------------------------------------------------------------------------- /v3/data/dialog/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/dialog/index.css -------------------------------------------------------------------------------- /v3/data/dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/dialog/index.html -------------------------------------------------------------------------------- /v3/data/dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/dialog/index.js -------------------------------------------------------------------------------- /v3/data/discard/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/discard/icon.png -------------------------------------------------------------------------------- /v3/data/discard/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/discard/index.css -------------------------------------------------------------------------------- /v3/data/discard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/discard/index.html -------------------------------------------------------------------------------- /v3/data/discard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/discard/index.js -------------------------------------------------------------------------------- /v3/data/drop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/drop/index.html -------------------------------------------------------------------------------- /v3/data/drop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/drop/index.js -------------------------------------------------------------------------------- /v3/data/editor/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/editor/drag.svg -------------------------------------------------------------------------------- /v3/data/editor/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/editor/index.css -------------------------------------------------------------------------------- /v3/data/editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/editor/index.html -------------------------------------------------------------------------------- /v3/data/editor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/editor/index.js -------------------------------------------------------------------------------- /v3/data/editor/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/editor/trash.svg -------------------------------------------------------------------------------- /v3/data/editor/vendor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/editor/vendor/README -------------------------------------------------------------------------------- /v3/data/editor/vendor/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/editor/vendor/Sortable.js -------------------------------------------------------------------------------- /v3/data/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/icons/128.png -------------------------------------------------------------------------------- /v3/data/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/icons/16.png -------------------------------------------------------------------------------- /v3/data/icons/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/icons/19.png -------------------------------------------------------------------------------- /v3/data/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/icons/256.png -------------------------------------------------------------------------------- /v3/data/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/icons/32.png -------------------------------------------------------------------------------- /v3/data/icons/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/icons/38.png -------------------------------------------------------------------------------- /v3/data/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/icons/48.png -------------------------------------------------------------------------------- /v3/data/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/icons/64.png -------------------------------------------------------------------------------- /v3/data/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/index.css -------------------------------------------------------------------------------- /v3/data/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/index.html -------------------------------------------------------------------------------- /v3/data/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/index.js -------------------------------------------------------------------------------- /v3/data/popup/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/locked.svg -------------------------------------------------------------------------------- /v3/data/popup/overwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/overwrite.svg -------------------------------------------------------------------------------- /v3/data/popup/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/preview.svg -------------------------------------------------------------------------------- /v3/data/popup/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/remove.svg -------------------------------------------------------------------------------- /v3/data/popup/rename.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/rename.svg -------------------------------------------------------------------------------- /v3/data/popup/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/data/popup/unlock.svg -------------------------------------------------------------------------------- /v3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/manifest.json -------------------------------------------------------------------------------- /v3/safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/safe.js -------------------------------------------------------------------------------- /v3/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Emano-Waldeck/Save-Tabs/HEAD/v3/worker.js --------------------------------------------------------------------------------