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