Automatically browse web pages on a customized schedule, either at set intervals or on specific days of the week.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "MonAmi Scheduled AutoBrowse",
"description": "Automatically browse web pages on a customized schedule, either at set intervals or on specific days of the week.",
"version": "2.5.302",
"manifest_version": 3,
"author": "SimBust Soft",
"background": {
"service_worker": "mon_serviceworker.js"
},
"action": {
"default_icon": {
"16": "images/android-icon-48x48.png",
"48": "images/android-icon-48x48.png",
"128": "images/android-icon-48x48.png"
},
"default_title": "Show Menu",
"default_popup": "mon_popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"file://*/*",
"https://*/*"
],
"js": [
"lib/jquery.min.js",
"mon_kon.js",
"mon_content_script.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"icons": {
"16": "images/favicon-16x16.png",
"48": "images/android-icon-48x48.png",
"128": "images/apple-icon-128x128.png"
},
"permissions": [
"tabs",
"storage",
"alarms"
],
"host_permissions": [
"http://simbust.com/",
"http://localhost/"
],
"web_accessible_resources": [
{
"resources": [
"images/*",
"mon_content_style.css",
"mon_modal_save_clip.html"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}