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”。

擴展截圖

screenshot
screenshot

下載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                    

擴展基本資訊

名稱 Notion.so Faster & Responsive Popup Notion.so Faster & Responsive Popup
ID leadcilhbmibbkgbnjgmmnfgnnhmeddk
官方網址 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"
            ]
        }
    ]
}