Notion.so Faster & Responsive Popup
Have a better notion.so experience, less transitions and responsiveness
什么是Notion.so Faster & Responsive Popup?
Notion.so Faster & Responsive Popup是由Matheus Cezar开发的Chrome扩展程序,该扩展的主要功能是“Have a better notion.so experience, less transitions and responsiveness”。
扩展截图
下载Notion.so Faster & Responsive Popup扩展crx文件
下载Notion.so Faster & Responsive Popup扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features ✔ ONE CLICK OPENS POPUP ✔ WRAP LINES IN CARDS ✔ HIDE HELP BUTTON ✔ FASTER TRANSITIONS ✔ SMALL PADDING ✔ RESPONSIVE (transforms columns in rows at narrow resolutions and windows) ✔ NICE SCROOL BAR
扩展基本信息
名称 | |
ID | leadcilhbmibbkgbnjgmmnfgnnhmeddk |
官方URL | https://chrome.google.com/webstore/detail/notionso-faster-responsiv/leadcilhbmibbkgbnjgmmnfgnnhmeddk |
简介 | Have a better notion.so experience, less transitions and responsiveness |
文件大小 | 19.7 KB |
安装次数 | 3,000 |
当前版本 | 1.7 |
更新时间 | 2020-10-09 |
上架时间 | 2019-06-15 |
评分 | 5.00/5 共9次评分 |
开发者 | Matheus Cezar |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://matheuscezar.me/ |
帮助页面URL | https://github.com/matheus6417/notion-so-responsive-popup/issues |
隐私政策页面URL | http://[email protected] |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion.so Faster & Responsive Popup", "version": "1.7", "description": "Have a better notion.so experience, less transitions and responsiveness", "manifest_version": 2, "icons": { "128": "icon.png", "16": "icon.png", "48": "icon.png" }, "options_page": "options.html", "permissions": [ "https:\/\/www.notion.so\/*", "contextMenus" ], "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "content-script.js" ], "css": [ "content-style.css" ] } ] } |