Notion Like Button
Embed Like Button into Notion
Cos'è Notion Like Button?
Notion Like Button è un'estensione di Chrome sviluppata da fujikky, e la sua funzione principale è "Embed Like Button into Notion".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Notion Like Button
Scarica i file di estensione Notion Like Button in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | dijaiapjgnkjknfoocnonoobnamcckbp |
| URL Ufficiale | https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp |
| Descrizione | Embed Like Button into Notion |
| Dimensione del File | 70.88 KB |
| Conteggio Installazioni | 405 |
| Versione Corrente | 1.2.0 |
| Ultimo Aggiornamento | 2022-08-08 |
| Data di Pubblicazione | 2022-02-02 |
| Sviluppatore | fujikky |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/fujikky/notion-like-button |
| URL della Pagina di Aiuto | https://zenn.dev/fujikky/articles/4e1471cd79ded9 |
| Lingue Supportate | 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"
} | |