Notion Like Button
Embed Like Button into Notion
Wat is Notion Like Button?
Notion Like Button is een Chrome-extensie ontwikkeld door fujikky, en de belangrijkste functie is "Embed Like Button into Notion".
Extensie Screenshots
Download het CRX-bestand van de extensie Notion Like Button
Download Notion Like Button-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Notion Like Button |
ID | dijaiapjgnkjknfoocnonoobnamcckbp |
Officiële URL | https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp |
Beschrijving | Embed Like Button into Notion |
Bestandsgrootte | 70.88 KB |
Aantal Installaties | 405 |
Huidige Versie | 1.2.0 |
Laatst Bijgewerkt | 2022-08-08 |
Publicatiedatum | 2022-02-02 |
Ontwikkelaar | fujikky |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/fujikky/notion-like-button |
Help Pagina-URL | https://zenn.dev/fujikky/articles/4e1471cd79ded9 |
Ondersteunde Talen | 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" } |