Notion.so Faster & Responsive Popup

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

Co to jest Notion.so Faster & Responsive Popup?

Notion.so Faster & Responsive Popup to rozszerzenie Chrome opracowane przez Matheus Cezar, a jego główną funkcją jest „Have a better notion.so experience, less transitions and responsiveness”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Notion.so Faster & Responsive Popup

Pobierz pliki rozszerzeń Notion.so Faster & Responsive Popup w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Notion.so Faster & Responsive Popup Notion.so Faster & Responsive Popup
ID leadcilhbmibbkgbnjgmmnfgnnhmeddk
Oficjalny URL https://chrome.google.com/webstore/detail/notionso-faster-responsiv/leadcilhbmibbkgbnjgmmnfgnnhmeddk
Opis Have a better notion.so experience, less transitions and responsiveness
Rozmiar pliku 19.7 KB
Liczba instalacji 3,000
Aktualna Wersja 1.7
Ostatnia Aktualizacja 2020-10-09
Data Publikacji 2019-06-15
Ocena 5.00/5 Łącznie 9 Oceny
Deweloper Matheus Cezar
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://matheuscezar.me/
Adres URL Strony Pomocy https://github.com/matheus6417/notion-so-responsive-popup/issues
Adres URL Strony Polityki Prywatności http://[email protected]
Obsługiwane Języki 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"
            ]
        }
    ]
}