├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── img ├── Chrome Store │ ├── iconfinder_tab_new_raised_6203.png │ ├── options-panel-snapshot-auto-save.png │ ├── options-panel-snapshot-other-settings.png │ ├── popup-snapshot.png │ ├── save-my-tabs-options.PNG │ ├── save-my-tabs-popup.PNG │ └── save-my-tabs-saving.png ├── Microsoft Store │ ├── iconfinder_tab_new_raised_6203.png │ ├── options-panel-snapshot-auto-save.png │ ├── options-panel-snapshot-other-settings.png │ ├── popup-snapshot.png │ ├── save-my-tabs-options.png │ ├── save-my-tabs-popup.png │ └── save-my-tabs-saving.png ├── icon-snapshot.png ├── options-icon-snapshot.png ├── options-panel-snapshot-auto-save.png ├── options-panel-snapshot-other-settings.png ├── options-panel-snapshot.png ├── popup-options-names.png └── popup-snapshot.png └── src ├── Makefile ├── background └── background.js ├── css ├── bootstrap.min.css └── common.css ├── icons ├── arrow-repeat.svg ├── clipboard-data.svg ├── clock-history.svg ├── floppy.svg ├── folder-symlink.svg ├── folder.svg ├── gear.svg ├── geo.svg ├── heart-fill.svg ├── iconfinder_tab_new_raised_18931.png ├── iconfinder_tab_new_raised_6203_128px.png ├── stopwatch.svg ├── tag.svg ├── toggles.svg ├── window-stack.svg └── x-square.svg ├── lib ├── bookmarks.js ├── bootstrap.bundle.min.js ├── browser-detection.js ├── browser-polyfill.min.js ├── storage.js ├── tabs.js └── utils.js ├── manifest.json ├── options ├── options.css ├── options.html └── options.js └── popup ├── popup.css ├── popup.html └── popup.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/_config.yml -------------------------------------------------------------------------------- /img/Chrome Store/iconfinder_tab_new_raised_6203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Chrome Store/iconfinder_tab_new_raised_6203.png -------------------------------------------------------------------------------- /img/Chrome Store/options-panel-snapshot-auto-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Chrome Store/options-panel-snapshot-auto-save.png -------------------------------------------------------------------------------- /img/Chrome Store/options-panel-snapshot-other-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Chrome Store/options-panel-snapshot-other-settings.png -------------------------------------------------------------------------------- /img/Chrome Store/popup-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Chrome Store/popup-snapshot.png -------------------------------------------------------------------------------- /img/Chrome Store/save-my-tabs-options.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Chrome Store/save-my-tabs-options.PNG -------------------------------------------------------------------------------- /img/Chrome Store/save-my-tabs-popup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Chrome Store/save-my-tabs-popup.PNG -------------------------------------------------------------------------------- /img/Chrome Store/save-my-tabs-saving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Chrome Store/save-my-tabs-saving.png -------------------------------------------------------------------------------- /img/Microsoft Store/iconfinder_tab_new_raised_6203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Microsoft Store/iconfinder_tab_new_raised_6203.png -------------------------------------------------------------------------------- /img/Microsoft Store/options-panel-snapshot-auto-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Microsoft Store/options-panel-snapshot-auto-save.png -------------------------------------------------------------------------------- /img/Microsoft Store/options-panel-snapshot-other-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Microsoft Store/options-panel-snapshot-other-settings.png -------------------------------------------------------------------------------- /img/Microsoft Store/popup-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Microsoft Store/popup-snapshot.png -------------------------------------------------------------------------------- /img/Microsoft Store/save-my-tabs-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Microsoft Store/save-my-tabs-options.png -------------------------------------------------------------------------------- /img/Microsoft Store/save-my-tabs-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Microsoft Store/save-my-tabs-popup.png -------------------------------------------------------------------------------- /img/Microsoft Store/save-my-tabs-saving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/Microsoft Store/save-my-tabs-saving.png -------------------------------------------------------------------------------- /img/icon-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/icon-snapshot.png -------------------------------------------------------------------------------- /img/options-icon-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/options-icon-snapshot.png -------------------------------------------------------------------------------- /img/options-panel-snapshot-auto-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/options-panel-snapshot-auto-save.png -------------------------------------------------------------------------------- /img/options-panel-snapshot-other-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/options-panel-snapshot-other-settings.png -------------------------------------------------------------------------------- /img/options-panel-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/options-panel-snapshot.png -------------------------------------------------------------------------------- /img/popup-options-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/popup-options-names.png -------------------------------------------------------------------------------- /img/popup-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/img/popup-snapshot.png -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/background/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/background/background.js -------------------------------------------------------------------------------- /src/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/css/common.css -------------------------------------------------------------------------------- /src/icons/arrow-repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/arrow-repeat.svg -------------------------------------------------------------------------------- /src/icons/clipboard-data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/clipboard-data.svg -------------------------------------------------------------------------------- /src/icons/clock-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/clock-history.svg -------------------------------------------------------------------------------- /src/icons/floppy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/floppy.svg -------------------------------------------------------------------------------- /src/icons/folder-symlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/folder-symlink.svg -------------------------------------------------------------------------------- /src/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/folder.svg -------------------------------------------------------------------------------- /src/icons/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/gear.svg -------------------------------------------------------------------------------- /src/icons/geo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/geo.svg -------------------------------------------------------------------------------- /src/icons/heart-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/heart-fill.svg -------------------------------------------------------------------------------- /src/icons/iconfinder_tab_new_raised_18931.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/iconfinder_tab_new_raised_18931.png -------------------------------------------------------------------------------- /src/icons/iconfinder_tab_new_raised_6203_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/iconfinder_tab_new_raised_6203_128px.png -------------------------------------------------------------------------------- /src/icons/stopwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/stopwatch.svg -------------------------------------------------------------------------------- /src/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/tag.svg -------------------------------------------------------------------------------- /src/icons/toggles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/toggles.svg -------------------------------------------------------------------------------- /src/icons/window-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/window-stack.svg -------------------------------------------------------------------------------- /src/icons/x-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/icons/x-square.svg -------------------------------------------------------------------------------- /src/lib/bookmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/lib/bookmarks.js -------------------------------------------------------------------------------- /src/lib/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/lib/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/lib/browser-detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/lib/browser-detection.js -------------------------------------------------------------------------------- /src/lib/browser-polyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/lib/browser-polyfill.min.js -------------------------------------------------------------------------------- /src/lib/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/lib/storage.js -------------------------------------------------------------------------------- /src/lib/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/lib/tabs.js -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/options/options.css -------------------------------------------------------------------------------- /src/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/options/options.html -------------------------------------------------------------------------------- /src/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/options/options.js -------------------------------------------------------------------------------- /src/popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/popup/popup.css -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salvoventura/save-my-tabs/HEAD/src/popup/popup.js --------------------------------------------------------------------------------