Notion Like Button

Embed Like Button into Notion

Notion Like Buttonとは何ですか?

Notion Like Buttonはfujikkyによって開発されたChromeの拡張機能で、その主な機能は「Embed Like Button into Notion」です。

拡張機能のスクリーンショット

screenshot
screenshot

Notion Like Button拡張機能のCRXファイルをダウンロード

Notion Like Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Notion Like Button Notion Like Button
ID dijaiapjgnkjknfoocnonoobnamcckbp
公式URL https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp
説明 Embed Like Button into Notion
ファイルサイズ 70.88 KB
インストール数 405
現在のバージョン 1.2.0
最終更新日 2022-08-08
公開日 2022-02-02
開発者 fujikky
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/fujikky/notion-like-button
ヘルプページのURL https://zenn.dev/fujikky/articles/4e1471cd79ded9
対応言語 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"
}