Browse tabs later.
Usage:
1. Click the bookmark icon in the right of address bar to save current tab.
2. Repeat first step to some tabs you want browse it later.
3. Click the bookmark icon on the toolbar restore your saved tabs.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "4.1.0",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/hoyang/browse-later",
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"applications": {
"gecko": {
"id": "{e39749e2-f9b8-4dcb-ac41-c729c0320888}"
}
},
"permissions": [
"tabs",
"storage",
"clipboardWrite",
"menus",
"contextMenus",
"activeTab"
],
"page_action": {
"default_icon": "icons/icon.svg",
"default_title": "__MSG_pageActionTitle__",
"browser_style": true
},
"browser_action": {
"default_icon": "icons/icon.svg",
"default_title": "__MSG_browserActionTitle__",
"default_popup": "pages/tabs.html",
"browser_style": true
},
"background": {
"scripts": [
"constants.js",
"common.js",
"content_helper.js",
"background.js"
]
},
"options_ui": {
"page": "pages/options.html",
"open_in_tab": true,
"browser_style": true
},
"default_locale": "en"
}