Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Easily take notes on any website with RemNote.",
"version": "1.0.12",
"manifest_version": 3,
"name": "RemNote Clipper",
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": ".\/assets\/icons\/32x32.png"
},
"icons": {
"16": ".\/assets\/icons\/16x16.png",
"32": ".\/assets\/icons\/32x32.png",
"48": ".\/assets\/icons\/48x48.png",
"128": ".\/assets\/icons\/128x128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.remnote.com\/*",
"https:\/\/staging.remnote.com\/*",
"http:\/\/localhost:3000\/*"
],
"js": [
"remNoteContentScript.bundle.js"
],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"annotationButtonsContentScript.bundle.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"remnote-128.png",
"remnote-34.png",
"staging-128.png",
"staging-34.png",
"*.png",
"*.svg",
"*.css",
"*.ttf"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"openSidebar": {
"suggested_key": {
"default": "Alt+R"
},
"description": "Open RemNote Sidebar for current page"
}
},
"permissions": [
"tabs",
"storage",
"scripting",
"sidePanel",
"commands",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
]
}