Notion Forms
Hide Notion widget border
什么是Notion Forms?
Notion Forms是由savetonotion.so开发的Chrome扩展程序,该扩展的主要功能是“Hide Notion widget border”。
扩展截图
下载Notion Forms扩展crx文件
下载Notion Forms扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
≡ Features
* Hide Notion Widget border to put widgets inside Notion without noticing it
* Copy easily your Notion credentials by clicking on a button.
≡ Privacy
* The extension does NOT collect any data or send data to third party. 扩展基本信息
| 名称 | |
| ID | lmlcnllajejljjffbfnpcmeldomdcfjn |
| 官方URL | https://chrome.google.com/webstore/detail/notion-forms/lmlcnllajejljjffbfnpcmeldomdcfjn |
| 简介 | Hide Notion widget border |
| 文件大小 | 16.99 KB |
| 安装次数 | 856 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2020-12-08 |
| 上架时间 | 2020-12-08 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | savetonotion.so |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Notion Forms",
"version": "0.0.1",
"manifest_version": 2,
"description": "Hide Notion widget border",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.notion.so\/*"
],
"css": [],
"js": [
"src\/custom.js"
]
}
],
"permissions": [
"storage",
"activeTab",
"https:\/\/*.notion.so\/*",
"cookies"
],
"browser_action": {
"default_popup": "src\/popup.html",
"default_title": "Notion Forms"
},
"content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-...='; object-src 'self'"
} | |