Notion.so Faster & Responsive Popup

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

¿Qué es Notion.so Faster & Responsive Popup?

Notion.so Faster & Responsive Popup es una extensión de Chrome desarrollada por Matheus Cezar, y su función principal es "Have a better notion.so experience, less transitions and responsiveness".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Notion.so Faster & Responsive Popup

Descarga archivos de extensión Notion.so Faster & Responsive Popup en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Notion.so Faster & Responsive Popup Notion.so Faster & Responsive Popup
ID leadcilhbmibbkgbnjgmmnfgnnhmeddk
URL Oficial https://chrome.google.com/webstore/detail/notionso-faster-responsiv/leadcilhbmibbkgbnjgmmnfgnnhmeddk
Descripción Have a better notion.so experience, less transitions and responsiveness
Tamaño del Archivo 19.7 KB
Cantidad de Instalaciones 3,000
Versión Actual 1.7
Última Actualización 2020-10-09
Fecha de Publicación 2019-06-15
Calificación 5.00/5 Total de 9 Calificaciones
Desarrollador Matheus Cezar
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://matheuscezar.me/
URL de la Página de Ayuda https://github.com/matheus6417/notion-so-responsive-popup/issues
URL de la Página de Política de Privacidad http://[email protected]
Idiomas Soportados 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"
            ]
        }
    ]
}