Inspect and view changes in rtrvr.ai 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,
"default_locale": "en",
"name": "__MSG_extensionName__",
"version": "9.1.0",
"description": "__MSG_extensionDescription__",
"host_permissions": [
"<all_urls>"
],
"omnibox": {
"keyword": "rtrvr"
},
"permissions": [
"storage",
"scripting",
"activeTab",
"identity",
"alarms",
"notifications",
"contextMenus",
"offscreen",
"sidePanel",
"clipboardRead"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+R",
"mac": "MacCtrl+R"
},
"description": "Open rtrvr.ai Side Panel."
}
},
"oauth2": {
"client_id": "714736390407-guv3os7qt87nb52fnunhnok0uub5tj2m.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/drive.file"
]
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_title": "RTRVR AI - Open Side Panel"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"content/index.iife.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"content-main-actuation/index.iife.js"
],
"run_at": "document_start",
"world": "MAIN",
"all_frames": true
}
],
"content_security_policy": {
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://cdn.jsdelivr.net https://cdnjs.cloudflare.com; child-src 'self';"
},
"sandbox": {
"pages": [
"side-panel/sandbox.html",
"side-panel/graph-sandbox.html",
"offscreen/sandbox.html",
"dynamic-content/index.html"
]
},
"web_accessible_resources": [
{
"resources": [
"*.js",
"*.mjs",
"*.css",
"*.svg",
"icon-128.png",
"icon-32.png"
],
"matches": [
"<all_urls>"
]
}
],
"side_panel": {
"default_path": "side-panel/index.html"
}
}