Notion Like Button

Embed Like Button into Notion

O que é Notion Like Button?

Notion Like Button é uma extensão do Chrome desenvolvida por fujikky, e sua principal característica é "Embed Like Button into Notion".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Notion Like Button

Baixe arquivos de extensão Notion Like Button no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Notion Like Button Notion Like Button
ID dijaiapjgnkjknfoocnonoobnamcckbp
URL Oficial https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp
Descrição Embed Like Button into Notion
Tamanho do Arquivo 70.88 KB
Contagem de Instalações 405
Versão Atual 1.2.0
Última Atualização 2022-08-08
Data de Publicação 2022-02-02
Desenvolvedor fujikky
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/fujikky/notion-like-button
URL da Página de Ajuda https://zenn.dev/fujikky/articles/4e1471cd79ded9
Idiomas Suportados 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"
}