Notion Colorizer

Add some style to Notion

Notion Colorizer là gì?

Notion Colorizer là một tiện ích mở rộng Chrome được phát triển bởi rosher.mark, và tính năng chính của nó là "Add some style to Notion".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Notion Colorizer

Tải xuống các tệp mở rộng Notion Colorizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension adds colors to Notion tables based on the tags you specify.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Notion Colorizer Notion Colorizer
ID bhnchphfhbkgieljecbphalgampfiehh
URL Chính Thức https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh
Mô tả Add some style to Notion
Kích Thước Tệp 230 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2023-04-04
Ngày Phát Hành 2023-04-04
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển rosher.mark
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DeMarkR/Notion-Colorizer
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "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"
    }
}