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 là gì?

Notion Favicon Fixer là một tiện ích mở rộng Chrome được phát triển bởi leo.thorp.dev, và tính năng chính của nó là "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…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Notion Favicon Fixer

Tải xuống các tệp mở rộng Notion Favicon Fixer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Notion Favicon Fixer Notion Favicon Fixer
ID dhgfaokfhhiondfknlnfojhfebgpfeai
URL Chính Thức https://chromewebstore.google.com/detail/notion-favicon-fixer/dhgfaokfhhiondfknlnfojhfebgpfeai
Mô tả 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…
Kích Thước Tệp 5.87 KB
Số Lần Cài Đặt 475
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-10-06
Ngày Phát Hành 2021-09-30
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển leo.thorp.dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}