Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_appName__",
"version": "1.0.4",
"description": "__MSG_appDescription__",
"permissions": [
"storage",
"activeTab",
"tabs",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Highlight Buddy",
"default_icon": {
"128": "img\/icon.png"
}
},
"icons": {
"128": "img\/icon.png"
},
"options_page": "dashboard.html",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"utils.js",
"content-script.js",
"content-notes.js"
],
"run_at": "document_end",
"all_frames": true,
"match_about_blank": true
}
],
"host_permissions": [
"<all_urls>"
]
}