Inspect and view changes in Clear Website Session 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",
"author": "Gautam Eswaran",
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "Clear Website Session"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"chromeos": "Ctrl+Period",
"linux": "Ctrl+Period",
"mac": "Command+Period",
"windows": "Ctrl+Period"
}
},
"clear-all-reload": {
"description": "Clear All + Reload page",
"suggested_key": {
"chromeos": "Ctrl+Shift+Period",
"default": "Ctrl+Shift+Period",
"linux": "Ctrl+Shift+Period",
"mac": "Command+Shift+Period"
}
},
"clear-cookies": {
"description": "Clear only Cookies",
"suggested_key": {
"chromeos": "Ctrl+Comma",
"default": "Ctrl+Comma",
"linux": "Ctrl+Comma",
"mac": "Command+Comma"
}
},
"clear-cookies-reload": {
"description": "Clear Cookies + Reload page",
"suggested_key": {
"chromeos": "Ctrl+Shift+Comma",
"default": "Ctrl+Shift+Comma",
"linux": "Ctrl+Shift+Comma",
"mac": "Command+Shift+Comma"
}
}
},
"default_locale": "en",
"description": "__MSG_appDescription__",
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
"manifest_version": 2,
"minimum_chrome_version": "20",
"name": "__MSG_appName__",
"options_page": "options.html",
"permissions": [
"cookies",
"*://*/*",
"contextMenus"
],
"version": "1.3.2"
}