Notion.so Faster & Responsive Popup

Have a better notion.so experience, less transitions and responsiveness

Was ist Notion.so Faster & Responsive Popup?

Notion.so Faster & Responsive Popup ist eine Chrome-Erweiterung, die von Matheus Cezar entwickelt wurde, und ihr Hauptmerkmal ist "Have a better notion.so experience, less transitions and responsiveness".

Erweiterungsscreenshots

screenshot
screenshot

Notion.so Faster & Responsive Popup-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion.so Faster & Responsive Popup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Notion.so Faster & Responsive Popup Notion.so Faster & Responsive Popup
ID leadcilhbmibbkgbnjgmmnfgnnhmeddk
Offizielle URL https://chrome.google.com/webstore/detail/notionso-faster-responsiv/leadcilhbmibbkgbnjgmmnfgnnhmeddk
Beschreibung Have a better notion.so experience, less transitions and responsiveness
Dateigröße 19.7 KB
Installationsanzahl 3,000
Aktuelle Version 1.7
Letztes Update 2020-10-09
Veröffentlichungsdatum 2019-06-15
Bewertung 5.00/5 Insgesamt 9 Bewertungen
Entwickler Matheus Cezar
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://matheuscezar.me/
Hilfeseite URL https://github.com/matheus6417/notion-so-responsive-popup/issues
URL der Datenschutzrichtlinien-Seite http://[email protected]
Unterstützte Sprachen 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"
            ]
        }
    ]
}