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是由leo.thorp.dev开发的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…”。

扩展截图

screenshot

下载Notion Favicon Fixer扩展crx文件

下载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"
            ]
        }
    ]
}