Notion Like Button

Embed Like Button into Notion

Notion Like Button là gì?

Notion Like Button là một tiện ích mở rộng Chrome được phát triển bởi fujikky, và tính năng chính của nó là "Embed Like Button into Notion".

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

screenshot
screenshot

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

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

                        Add a Like button to Notion. Use the Notion's API token set by the user. Only pages that have a "Like" field and are accessible to the API will display a like button.                    

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

Tên Notion Like Button Notion Like Button
ID dijaiapjgnkjknfoocnonoobnamcckbp
URL Chính Thức https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp
Mô tả Embed Like Button into Notion
Kích Thước Tệp 70.88 KB
Số Lần Cài Đặt 405
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2022-08-08
Ngày Phát Hành 2022-02-02
Nhà Phát Triển fujikky
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/fujikky/notion-like-button
URL Trang Trợ Giúp https://zenn.dev/fujikky/articles/4e1471cd79ded9
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "icons": {
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_icon": {
            "38": "icon-38.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "vendor.js",
                "content_script.js"
            ],
            "css": [
                "content_script-styles.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.notion.com\/*"
    ],
    "name": "Notion Like Button",
    "description": "Embed Like Button into Notion",
    "version": "1.2.0"
}