Notion Like Button

Embed Like Button into Notion

What is Notion Like Button?

Notion Like Button is a Chrome extension developed by fujikky, and its main feature is "Embed Like Button into Notion".

Extension Screenshots

screenshot
screenshot

Download Notion Like Button Extension CRX File

Download Notion Like Button extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Notion Like Button Notion Like Button
ID dijaiapjgnkjknfoocnonoobnamcckbp
Official URL https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp
Description Embed Like Button into Notion
File Size 70.88 KB
Installation Count 405
Current Version 1.2.0
Last Updated 2022-08-08
Publish Date 2022-02-02
Developer fujikky
Email [email protected]
Payment Type free
Extension Website https://github.com/fujikky/notion-like-button
Help Page URL https://zenn.dev/fujikky/articles/4e1471cd79ded9
Supported Languages 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"
}