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 - это расширение Chrome, разработанное Matheus Cezar, и его основная функция - "Have a better notion.so experience, less transitions and responsiveness".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Notion.so Faster & Responsive Popup

Скачайте файлы расширений 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
Официальный URL 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"
            ]
        }
    ]
}