Inspect and view changes in OrbitNote 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,
"name": "OrbitNote",
"description": "Create, convert, connect: take your digital documents to the next level with OrbitNote.",
"homepage_url": "https://orbit.texthelp.com",
"version": "7.0.1",
"icons": {
"16": "Chrome/Icons/orbitnote-icon-16x16.png",
"48": "Chrome/Icons/orbitnote-icon-48x48.png",
"128": "Chrome/Icons/orbitnote-icon-128x128.png"
},
"background": {
"service_worker": "background/worker_wrapper.js"
},
"storage": {
"managed_schema": "content-scripts/storageSchema/preferences_schema.json"
},
"options_ui": {
"page": "content-scripts/options/options.html",
"open_in_tab": false
},
"permissions": [
"webRequest",
"scripting",
"tabs",
"gcm",
"idle",
"alarms",
"webNavigation",
"storage",
"identity",
"identity.email"
],
"host_permissions": [
"https://www.google-analytics.com/",
"https://*/*",
"http://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"default_icon": {
"19": "Chrome/Icons/orbitnote-icon-16x16.png",
"38": "Chrome/Icons/orbitnote-icon-32x32.png"
},
"default_title": "OrbitNote"
},
"incognito": "split",
"web_accessible_resources": [
{
"resources": [
"content-scripts/schoology/texthelpschoology.js",
"content-scripts/schoology/css/stylesTh.css",
"content-scripts/schoology/js/axios.js",
"content-scripts/web/Schoology/thIntegration.html",
"content-scripts/brightspace/texthelpbrightspace.js",
"content-scripts/brightspace/css/stylesTh.css",
"content-scripts/global/contentScript.js",
"content-scripts/global/styles.css",
"Chrome/Icons/orbitnote-icon-32x32.png",
"Chrome/Icons/orbitnoteLogo.svg",
"src/options/options.html",
"filePicker/index.html",
"schoologyOpen/index.html",
"schoologyHandin/index.html",
"http:/*",
"https:/*",
"file:/*",
"chrome-extension:/*",
"filesystem:/*",
"https://texthelp-pdf-reader.firebaseio.com/*",
"https://pdfviewer-9152a.firebaseio.com/*",
"https://*.firebaseio.com/*",
"drive:*"
],
"matches": [
"*://*/*"
]
}
],
"content_scripts": [
{
"js": [
"content-scripts/PWA/hideInstallExtBtn.js"
],
"matches": [
"https://orbit.texthelp.com/",
"https://pdf.dev.texthelp.com/",
"https://localhost:3000/"
]
},
{
"js": [
"content-scripts/PWA/contentScript.js"
],
"matches": [
"https://orbit.texthelp.com/*",
"https://pdf.dev.texthelp.com/*",
"https://localhost:3000/*"
],
"all_frames": true,
"run_at": "document_start"
},
{
"css": [
"content-scripts/global/styles.css"
],
"js": [
"content-scripts/global/contentScript.js"
],
"matches": [
"file:///*/*.pdf",
"file:///*/*.PDF"
],
"run_at": "document_end"
},
{
"css": [
"content-scripts/classroom/styles.css"
],
"js": [
"background/storageHelper.js",
"content-scripts/classroom/contentScript.js"
],
"matches": [
"https://classroom.google.com/*"
],
"run_at": "document_end"
},
{
"matches": [
"*://*/*"
],
"js": [
"background/storageHelper.js",
"content-scripts/schoology/contentScript.js"
],
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": [
"https://orbit.texthelp.com/*",
"https://pdf.texthelp.com/*"
],
"ids": [
"*"
]
},
"oauth2": {
"client_id": "243341882805-fav9vbuf7c132v7lkvav10h32o5gds7q.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/drive"
]
}
}