Notion Like Button

Embed Like Button into Notion

Notion Like Button란 무엇입니까?

Notion Like Button은(는) fujikky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Embed Like Button into Notion"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Notion Like Button 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Notion Like Button Notion Like Button
ID dijaiapjgnkjknfoocnonoobnamcckbp
공식 URL https://chromewebstore.google.com/detail/notion-like-button/dijaiapjgnkjknfoocnonoobnamcckbp
설명 Embed Like Button into Notion
파일 크기 70.88 KB
설치 횟수 405
현재 버전 1.2.0
최근 업데이트 2022-08-08
출시 날짜 2022-02-02
개발자 fujikky
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/fujikky/notion-like-button
도움말 페이지 URL https://zenn.dev/fujikky/articles/4e1471cd79ded9
지원되는 언어 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"
}