Notion Favicon Fixer

TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…

Что такое Notion Favicon Fixer?

Notion Favicon Fixer - это расширение Chrome, разработанное leo.thorp.dev, и его основная функция - "TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…".

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

screenshot

Скачать файл CRX расширения Notion Favicon Fixer

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

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

                        TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo.

Notion pages have a feature where the page's favicon changes to match whatever custom icon is on the page. But If you are switching around between many other open tabs, that makes it hard to find the Notion tab again. Once installed, this extension simply prevents the favicon from changing whenever you are viewing a Notion page, making open Notion tabs easier to find at a glance.

Source code: https://github.com/leothorp/notion-favicon-fixer                    

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

Название Notion Favicon Fixer Notion Favicon Fixer
ID dhgfaokfhhiondfknlnfojhfebgpfeai
Официальный URL https://chromewebstore.google.com/detail/notion-favicon-fixer/dhgfaokfhhiondfknlnfojhfebgpfeai
Описание TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…
Размер файла 5.87 KB
Количество установок 475
Текущая Версия 1.0
Последнее Обновление 2021-10-06
Дата публикации 2021-09-30
Рейтинг 5.00/5 Всего 7 оценок
Разработчик leo.thorp.dev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Favicon Fixer",
    "version": "1.0",
    "icons": {
        "128": "icon.jpeg"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/notion.so\/*",
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}