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 |
Eメール | [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" ] } ] } |