Inspect and view changes in iorad - the tutorial builder 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",
"manifest_version": 3,
"minimum_chrome_version": "116",
"name": "iorad - the tutorial builder",
"version": "2.0.0.5110",
"description": "Tutorial creation made easy. Instantly make guided, step-by-step directions for any website. Directly in the browser.",
"icons": {
"48": "assets/icon.png",
"128": "assets/icon.png"
},
"author": "iorad",
"short_name": "iorad",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"19": "assets/icon.png",
"38": "assets/icon.png"
}
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"permissions": [
"identity",
"storage",
"tabs",
"nativeMessaging",
"webNavigation",
"webRequest",
"declarativeNetRequestWithHostAccess",
"unlimitedStorage",
"cookies",
"contextMenus",
"scripting",
"offscreen",
"sidePanel"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"assets/*.*",
"panel/*.*",
"content/*.*",
"pip/*.*",
"workers/*.*"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"match_about_blank": true,
"js": [
"content_topFrameLifeline.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"externally_connectable": {
"matches": [
"http://local.iorad.com:9000/*",
"https://dev.iorad.local/*",
"https://dev.iorad.dev/*",
"https://ldev.iorad.dev/*",
"https://test.iorad.com/*",
"http://test.iorad.com/*",
"https://www.iorad.com/*",
"http://www.iorad.com/*"
]
}
}