Notion Helper

An extension to enhance your experience with Notion

Notion Helper là gì?

Notion Helper là một tiện ích mở rộng Chrome được phát triển bởi meshkani.mo, và tính năng chính của nó là "An extension to enhance your experience with Notion".

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

screenshot

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

Tải xuống các tệp mở rộng Notion Helper 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

                        Features:
- RTL
- Custom Font (Type in the name of the font you want. Make sure that the font is installed on your computer)

If you need any other features that are missing, let me know in the comments.                    

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

Tên Notion Helper Notion Helper
ID jckgilkkfgibbeokglganbfdipcblibd
URL Chính Thức https://chromewebstore.google.com/detail/notion-helper/jckgilkkfgibbeokglganbfdipcblibd
Mô tả An extension to enhance your experience with Notion
Kích Thước Tệp 47.12 KB
Số Lần Cài Đặt 2,208
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-10-01
Ngày Phát Hành 2021-09-23
Đánh Giá 5.00/5 Tổng số 29 Đánh Giá
Nhà Phát Triển meshkani.mo
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Helper",
    "version": "1.0.1",
    "description": "An extension to enhance your experience with Notion",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/*.notion.so\/*",
        "*:\/\/*.notion.site\/*"
    ],
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": {
            "32": "\/logo\/logo-32.png",
            "48": "\/logo\/logo-48.png",
            "128": "\/logo\/logo-128.png"
        }
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.notion.so\/*",
                "*:\/\/*.notion.site\/*"
            ],
            "js": [
                "src\/scripts\/rtl.js",
                "src\/scripts\/font.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "32": "\/logo\/logo-32.png",
        "48": "\/logo\/logo-48.png",
        "128": "\/logo\/logo-128.png"
    }
}