Inspect and view changes in Auto Refresh 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",
"background": {
"scripts": [
"/assets/js/refresh_worker.js",
"/assets/js/bg.js",
"/assets/js/workWithContextMenu.js"
]
},
"browser_action": {
"default_popup": "index.html",
"default_title": "Refresher"
},
"description": "You can set the period in which the required tab will be refreshed with this extension",
"icons": {
"128": "/assets/images/essential_image.png"
},
"manifest_version": 2,
"name": "Auto Refresh",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"permissions": [
"tabs",
"storage",
"<all_urls>",
"contextMenus"
],
"version": "1.0"
}