Gmail Color Favicon
Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Gmail Color Faviconとは何ですか?
Gmail Color FaviconはManu Cornetによって開発されたChromeの拡張機能で、その主な機能は「Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.」です。
拡張機能のスクリーンショット
Gmail Color Favicon拡張機能のCRXファイルをダウンロード
Gmail Color Favicon拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
*** Please reload your Gmail tabs after installing this extension. *** *** Known issue: the color you've chosen doesn't stick when you reload your Gmail. That's next on the roadmap. *** Feedback and contributions welcome!
拡張機能の基本情報
名前 | |
ID | ibkehhmaemkhpniaekaggfcbhfhaiiho |
公式URL | https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho |
説明 | Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts. |
ファイルサイズ | 652 KB |
インストール数 | 422 |
現在のバージョン | 0.15 |
最終更新日 | 2016-01-06 |
公開日 | 2016-01-06 |
評価 | 4.00/5 合計 10 レビュー |
開発者 | Manu Cornet |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/lmanul/gmailcolorfavicon |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Color Favicon", "version": "0.15", "description": "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.", "browser_action": { "default_title": "Pick a color", "default_icon": "icon_19.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js" ] } ], "icons": { "19": "icon_19.png", "32": "icon_32.png", "48": "icon_48.png", "72": "icon_72.png", "128": "icon_128.png", "250": "icon_250.png" }, "permissions": [ "https:\/\/mail.google.com\/*", "tabs" ] } |