Notion Style Tweaks

Tweaks for Notion

Что такое Notion Style Tweaks?

Notion Style Tweaks - это расширение Chrome, разработанное eliwimm, и его основная функция - "Tweaks for Notion".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Notion Style Tweaks

Скачайте файлы расширений Notion Style Tweaks в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        NST is a free and open source Chrome extension aiming to give great granular control over the visual appearance of Notion.

If you find any bugs or have any suggestions feel free to open an issue on Github.                    

Основная информация о расширении

Название Notion Style Tweaks Notion Style Tweaks
ID fclmlifmfhekeohpojchhkmgpmkplkpo
Официальный URL https://chromewebstore.google.com/detail/notion-style-tweaks/fclmlifmfhekeohpojchhkmgpmkplkpo
Описание Tweaks for Notion
Размер файла 6.06 MB
Количество установок 1,868
Текущая Версия 0.7.2
Последнее Обновление 2022-05-24
Дата публикации 2022-02-04
Рейтинг 5.00/5 Всего 11 оценок
Разработчик eliwimm
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/EliWimmer/notion-style-tweaks
URL страницы помощи https://github.com/EliWimmer/notion-style-tweaks
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Style Tweaks",
    "description": "Tweaks for Notion",
    "homepage_url": "https:\/\/github.com\/EliWimmer\/notion-style-tweaks",
    "version": "0.7.2",
    "manifest_version": 3,
    "action": {
        "default_title": "Notion Style Tweaks",
        "default_popup": "index.html",
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-128.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "build\/injection.js",
                "build\/update.js"
            ],
            "css": [
                "stylesheets\/themes\/CSS\/theme.css",
                "stylesheets\/tweaks\/CSS\/tweaks.css"
            ],
            "matches": [
                "https:\/\/www.notion.so\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "build\/background.js"
    },
    "permissions": [
        "tabs",
        "scripting",
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/www.notion.so\/*"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/Cinzel-VariableFont_wght.ttf",
                "fonts\/DancingScript-VariableFont_wght.ttf",
                "fonts\/EBGaramond-VariableFont_wght.ttf",
                "fonts\/FiraCode-VariableFont_wght.ttf",
                "fonts\/Inconsolata-VariableFont_wght.ttf",
                "fonts\/Inter-VariableFont_wght.ttf",
                "fonts\/JetBrainsMono-VariableFont_wght.ttf",
                "fonts\/JosefinSans-VariableFont_wght.ttf",
                "fonts\/JosefinSlab-VariableFont_wght.ttf",
                "fonts\/Lora-VariableFont_wght.ttf",
                "fonts\/MavenPro-VariableFont_wght.ttf",
                "fonts\/Montserrat-VariableFont_wght.ttf",
                "fonts\/Mulish-VariableFont_wght.ttf",
                "fonts\/Nunito-VariableFont_wght.ttf",
                "fonts\/OpenSans-VariableFont_wght.ttf",
                "fonts\/Oswald-VariableFont_wght.ttf",
                "fonts\/OverpassMono-VariableFont_wght.ttf",
                "fonts\/Petrona-VariableFont_wght.ttf",
                "fonts\/PlayfairDisplay-VariableFont_wght.ttf",
                "fonts\/Quicksand-VariableFont_wght.ttf",
                "fonts\/Raleway-VariableFont_wght.ttf",
                "fonts\/RobotoMono-VariableFont_wght.ttf",
                "fonts\/RobotoSlab-VariableFont_wght.ttf",
                "fonts\/Rubik-VariableFont_wght.ttf",
                "fonts\/SourceCodePro-VariableFont_wght.ttf",
                "fonts\/WorkSans-VariableFont_wght.ttf"
            ],
            "matches": [
                "https:\/\/www.notion.so\/*"
            ]
        }
    ]
}