Inspect and view changes in Auto Refresh Page 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
{
"manifest_version": 3,
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
"short_name": "__MSG_app_short_name__",
"version": "3.2",
"default_locale": "en",
"author": "Auto Refresh Page",
"homepage_url": "https://www.autorefresh.page",
"icons": {
"16": "/img/icons/16x16.png",
"32": "/img/icons/32x32.png",
"48": "/img/icons/48x48.png",
"64": "/img/icons/64x64.png",
"80": "/img/icons/80x80.png",
"128": "/img/icons/128x128.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
}
},
"toggle": {
"description": "__MSG_command_toggle__",
"suggested_key": {
"default": "Ctrl+Shift+Space",
"mac": "Command+Shift+Space"
}
}
},
"action": {
"default_icon": {
"16": "/img/icons/16x16-green.png",
"20": "/img/icons/20x20-green.png",
"24": "/img/icons/24x24-green.png",
"32": "/img/icons/32x32-green.png"
},
"default_title": "__MSG_app_short_name__",
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"tabs",
"alarms",
"storage",
"scripting",
"contextMenus",
"browsingData",
"notifications"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"img/icons/*"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}