Notion.so Faster & Responsive Popup

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

O que é Notion.so Faster & Responsive Popup?

Notion.so Faster & Responsive Popup é uma extensão do Chrome desenvolvida por Matheus Cezar, e sua principal característica é "Have a better notion.so experience, less transitions and responsiveness".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Notion.so Faster & Responsive Popup

Baixe arquivos de extensão Notion.so Faster & Responsive Popup no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Notion.so Faster & Responsive Popup Notion.so Faster & Responsive Popup
ID leadcilhbmibbkgbnjgmmnfgnnhmeddk
URL Oficial https://chrome.google.com/webstore/detail/notionso-faster-responsiv/leadcilhbmibbkgbnjgmmnfgnnhmeddk
Descrição Have a better notion.so experience, less transitions and responsiveness
Tamanho do Arquivo 19.7 KB
Contagem de Instalações 3,000
Versão Atual 1.7
Última Atualização 2020-10-09
Data de Publicação 2019-06-15
Classificação 5.00/5 Total de 9 Avaliações
Desenvolvedor Matheus Cezar
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://matheuscezar.me/
URL da Página de Ajuda https://github.com/matheus6417/notion-so-responsive-popup/issues
URL da Página de Política de Privacidade http://[email protected]
Idiomas Suportados 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"
            ]
        }
    ]
}