Notion Themes

Make your Notion pretty with custom themes.

什么是Notion Themes?

Notion Themes是由Yudax开发的Chrome扩展程序,该扩展的主要功能是“Make your Notion pretty with custom themes.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载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                    

扩展基本信息

名称 Notion Themes Notion Themes
ID pglbhommhmgieofbdbnlpcbgcdmoagfo
官方URL 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
    }
}