Notion Forms
Hide Notion widget border
Notion Forms là gì?
Notion Forms là một tiện ích mở rộng Chrome được phát triển bởi savetonotion.so, và tính năng chính của nó là "Hide Notion widget border".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Notion Forms
Tải xuống các tệp mở rộng Notion Forms dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
≡ 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lmlcnllajejljjffbfnpcmeldomdcfjn |
URL Chính Thức | https://chrome.google.com/webstore/detail/notion-forms/lmlcnllajejljjffbfnpcmeldomdcfjn |
Mô tả | Hide Notion widget border |
Kích Thước Tệp | 16.99 KB |
Số Lần Cài Đặt | 856 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2020-12-08 |
Ngày Phát Hành | 2020-12-08 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | savetonotion.so |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |