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. 扩展基本信息
| 名称 | |
| 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"
}
]
} | |