Make your Notion pretty with custom themes.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Notion Themes",
"version": "0.0.2",
"description": "Make your Notion pretty with custom themes.",
"permissions": [
"storage",
"https://notionthemes.netlify.app/"
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://www.notion.so/*"
],
"js": [
"js/content.js"
]
}
],
"browser_action": {
"default_title": "Choose a theme",
"default_popup": "popup.html",
"default_icon": {
"19": "icons/16.png",
"38": "icons/48.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}