Notion Like Button

Embed Like Button into Notion

Notion Like Buttonคืออะไร?

Notion Like Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fujikky และคุณลักษณะหลักของมันคือ "Embed Like Button into Notion"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion Like Button

ดาวน์โหลดไฟล์ส่วนขยาย Notion Like Button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}