notion-favicon-replacer
Replaces notion's dynamic favicons with their default favicon
什麼是notion-favicon-replacer?
notion-favicon-replacer是由piyushgk1開發的Chrome擴展程式,該擴展的主要功能是“Replaces notion's dynamic favicons with their default favicon”。
擴展截圖
下載notion-favicon-replacer擴展crx文件
下載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 |
ID | phpjnhdlhdmgebjijbbokdchfjnjenbg |
官方網址 | 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" } ] } |