Notion Like Button
Embed Like Button into Notion
什麼是Notion Like Button?
Notion Like Button是由fujikky開發的Chrome擴展程式,該擴展的主要功能是“Embed Like Button into Notion”。
擴展截圖
下載Notion Like Button擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | dijaiapjgnkjknfoocnonoobnamcckbp |
| 官方網址 | 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"
} | |