notion-favicon-replacer

Replaces notion's dynamic favicons with their default favicon

Что такое notion-favicon-replacer?

notion-favicon-replacer - это расширение Chrome, разработанное piyushgk1, и его основная функция - "Replaces notion's dynamic favicons with their default favicon".

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

screenshot

Скачать файл CRX расширения notion-favicon-replacer

Скачайте файлы расширений notion-favicon-replacer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Notion dynamically changes favicons based on the page's icon. This makes it frustrating to determine at a glance which tab is the notion tab. This extension resets favicons on all notion tabs to the default favicon.                    

Основная информация о расширении

Название notion-favicon-replacer notion-favicon-replacer
ID phpjnhdlhdmgebjijbbokdchfjnjenbg
Официальный URL https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg
Описание Replaces notion's dynamic favicons with their default favicon
Размер файла 42.67 KB
Количество установок 27
Текущая Версия 1.5
Последнее Обновление 2021-09-09
Дата публикации 2021-09-08
Рейтинг 5.00/5 Всего 1 оценок
Разработчик piyushgk1
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/EpicPi/nation-favicon-replacer
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "notion-favicon-replacer",
    "description": "Replaces notion's dynamic favicons with their default favicon",
    "version": "1.5",
    "icons": {
        "16": "ext_16.png",
        "48": "ext_48.png",
        "128": "ext_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "replace.js"
            ],
            "run_at": "document_end"
        }
    ]
}