Inspect and view changes in Beastnotes ▪ Take notes for online courses 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",
"name": "Beastnotes ▪ Take notes for online courses",
"description": "Take notes and learn effectively while watching course videos on MOOC platforms, YouTube etc.",
"version": "0.5.6",
"manifest_version": 3,
"author": "https://www.beastnotes.com/",
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"background": {
"service_worker": "index.js"
},
"action": {},
"externally_connectable": {
"matches": [
"https://*.beastnotes.com/*",
"https://*.thinkific.com/*"
]
},
"permissions": [
"activeTab",
"alarms",
"cookies",
"scripting",
"storage",
"unlimitedStorage"
],
"host_permissions": [
"https://www.beastnotes.com/",
"https://*.thinkific.com/"
],
"commands": {
"open_selection_modal": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "MacCtrl+Shift+K"
},
"description": "Open selection menu"
},
"timestamp": {
"suggested_key": {
"default": "Ctrl+Shift+Period",
"mac": "MacCtrl+Shift+Period"
},
"description": "Capture timestamp"
},
"video_mode": {
"suggested_key": {
"default": "Ctrl+Shift+V",
"mac": "MacCtrl+Shift+V"
},
"description": "Toggle video mode"
},
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Space",
"mac": "MacCtrl+Shift+Space"
}
}
},
"web_accessible_resources": [
{
"resources": [
"content/*",
"vendor/*"
],
"matches": [
"<all_urls>"
],
"extension_ids": [
"oidoacicbcncolhinhfgpfpadgcfjeli"
]
}
]
}