Clears the cache and reloads the page.
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": "__MSG_extensionName__",
"version": "1.0",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"permissions": [
"browsingData",
"activeTab",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"default_title": "__MSG_actionTooltip__"
},
"commands": {
"clear-cache-and-reload": {
"suggested_key": {
"default": "Alt+R"
},
"description": "__MSG_commandDescription__"
}
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}