Inspect and view changes in ktab 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",
"name": "ktab",
"version": "1.2",
"description": "A better way to bookmark.",
"permissions": [
"tabs",
"storage"
],
"icons": {
"16": "./icons/16.png",
"32": "./icons/32.png",
"48": "./icons/48.png",
"64": "./icons/64.png",
"128": "./icons/128.png"
},
"browser_action": {
"default_popup": "index.html#popup=true"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self'; object-src 'self'",
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
},
"commands": {
"ViewBookMarks": {
"suggested_key": {
"default": "Shift+Alt+Space"
},
"description": "View your bookmarks."
}
}
}