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",
"name": "Notion Colorizer",
"description": "Add some style to Notion",
"version": "0.1.1",
"manifest_version": 3,
"background": {
"service_worker": "serviceWorker.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.www.notion.so\/*"
],
"js": [
"contentScript.js"
]
}
],
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_title": "Notion Colorizer",
"default_popup": "popup.html",
"default_icon": {
"16": "\/icons\/notionIco16.png",
"32": "\/icons\/notionIco32.png",
"48": "\/icons\/notionIco48.png",
"128": "\/icons\/notionIco128.png"
}
},
"icons": {
"16": "\/icons\/notionIco16.png",
"32": "\/icons\/notionIco32.png",
"48": "\/icons\/notionIco48.png",
"128": "\/icons\/notionIco128.png"
}
}