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 | 
| Eメール | [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"
        }
    ]
}  |  |