Inspect and view changes in Refresh Web Page Regularly 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
{
"author": "24min",
"name": "__MSG_name__",
"version": "0.0.0.1",
"manifest_version": 3,
"default_locale": "en",
"description": "__MSG_description__",
"icons": {
"16": "icons/icon.png",
"32": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"action": {
"default_popup": "popup/index.html",
"default_icon": "icons/icon.png",
"default_title": "â³Refresh Web Page Regularly"
},
"background": {
"service_worker": "bg/store.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_idle",
"js": [
"utils/tools.js",
"content/refreshConfigPage.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icons/*.png"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"activeTab",
"tabs",
"alarms",
"power"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}