Inspect and view changes in Tag Bookmarks source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Tag Bookmarks",
"description": "Rebuild your bookmarks with tags",
"version": "3.4.2",
"icons": {
"16": "img/logo-256.png",
"32": "img/logo-256.png",
"48": "img/logo-256.png",
"96": "img/logo-256.png",
"128": "img/logo-256.png"
},
"action": {
"default_title": "Tag Bookmarks",
"default_popup": "popup.html",
"default_icon": "img/logo-256.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+O",
"mac": "Command+Shift+O"
},
"description": "Activate the extension"
},
"edit-bookmark": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
},
"description": "Edit Bookmark"
}
},
"omnibox": {
"keyword": "tb"
},
"permissions": [
"sidePanel",
"tabs",
"storage",
"bookmarks",
"commands"
],
"browser_specific_settings": {
"gecko": {
"id": "{d14c1409-0540-43b6-9903-5b94f882c309}"
}
},
"options_page": "options.html",
"default_locale": "en",
"background": {
"service_worker": "background.js"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"side_panel": {
"default_path": "sidepanel.html"
}
}