Notion Themes
Make your Notion pretty with custom themes.
什麼是Notion Themes?
Notion Themes是由Yudax開發的Chrome擴展程式,該擴展的主要功能是“Make your Notion pretty with custom themes.”。
擴展截圖
下載Notion Themes擴展crx文件
下載Notion Themes擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Notion Themes is an open-source web extension to apply custom themes to Notion.
Install Notion Themes and change the overall look and feel of Notion. Select from 10+ different dark/light color schemes.
Features:
- Library of updated beautiful themes
- Apply Custom Google Fonts
- Free and Open source 擴展基本資訊
| 名稱 | |
| ID | pglbhommhmgieofbdbnlpcbgcdmoagfo |
| 官方網址 | https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo |
| 簡介 | Make your Notion pretty with custom themes. |
| 檔案大小 | 27.7 KB |
| 安裝次數 | 7,000 |
| 目前版本 | 0.0.2 |
| 更新時間 | 2022-01-11 |
| 上架時間 | 2022-01-11 |
| 評分 | 5.00/5 共 17 次評分 |
| 開發者 | Yudax |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/notionblog/NotionThemes |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"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
}
} | |