Notion Like Button
Embed Like Button into Notion
Vad är Notion Like Button?
Notion Like Button är en Chrome-tillägg utvecklad av fujikky, och dess huvudfunktion är "Embed Like Button into Notion".
Tilläggsskärmbilder
Ladda ner Notion Like Button-förlängningens CRX-fil
Ladda ner Notion Like Button-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Notion Like Button |
ID | dijaiapjgnkjknfoocnonoobnamcckbp |
Officiell webbadress | https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp |
Beskrivning | Embed Like Button into Notion |
Filstorlek | 70.88 KB |
Antal Installationer | 405 |
Aktuell Version | 1.2.0 |
Senast Uppdaterad | 2022-08-08 |
Publiceringsdatum | 2022-02-02 |
Utvecklare | fujikky |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/fujikky/notion-like-button |
Hjälpsida URL | https://zenn.dev/fujikky/articles/4e1471cd79ded9 |
Stödda Språk | 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" } |