Notion Like Button

Embed Like Button into Notion

Was ist Notion Like Button?

Notion Like Button ist eine Chrome-Erweiterung, die von fujikky entwickelt wurde, und ihr Hauptmerkmal ist "Embed Like Button into Notion".

Erweiterungsscreenshots

screenshot
screenshot

Notion Like Button-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion Like Button-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Notion Like Button Notion Like Button
ID dijaiapjgnkjknfoocnonoobnamcckbp
Offizielle URL https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp
Beschreibung Embed Like Button into Notion
Dateigröße 70.88 KB
Installationsanzahl 405
Aktuelle Version 1.2.0
Letztes Update 2022-08-08
Veröffentlichungsdatum 2022-02-02
Entwickler fujikky
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/fujikky/notion-like-button
Hilfeseite URL https://zenn.dev/fujikky/articles/4e1471cd79ded9
Unterstützte Sprachen 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"
}