MyLogo for Google
Change Google Logo into Your Name!
MyLogo for Googleとは何ですか?
MyLogo for Googleはhttps://gamitisa.comによって開発されたChromeの拡張機能で、その主な機能は「Change Google Logo into Your Name!」です。
拡張機能のスクリーンショット
MyLogo for Google拡張機能のCRXファイルをダウンロード
MyLogo for Google拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
With this Extension, Google Logo can be replaced with Custom Text Logo in Google Homepage and Search Result Page.
拡張機能の基本情報
名前 | MyLogo for Google |
ID | camafjgigpbkknfbkbbinffapgpjpnjl |
公式URL | https://chromewebstore.google.com/detail/mylogo-for-google/camafjgigpbkknfbkbbinffapgpjpnjl |
説明 | Change Google Logo into Your Name! |
ファイルサイズ | 33.11 KB |
インストール数 | 84 |
現在のバージョン | 2.2.3 |
最終更新日 | 2021-08-30 |
公開日 | 2021-08-16 |
評価 | 2.00/5 合計 1 レビュー |
開発者 | https://gamitisa.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://gamitisa.com/ |
ヘルプページのURL | https://gamitisa.com/contact/ |
プライバシーポリシーページのURL | https://gamitisa.com/privacy-policy.php |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MyLogo for Google", "version": "2.2.3", "description": "Change Google Logo into Your Name!", "author": "Gamitisa", "homepage_url": "https:\/\/gamitisa.com", "icons": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png" }, "page_action": { "default_title": "Google MyLogo", "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/", "https:\/\/www.google.com\/?*", "https:\/\/www.google.com\/search*", "https:\/\/www.google.com\/webhp*" ], "js": [ "mylogo.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistant": false }, "options_ui": { "page": "options.html", "browser_style": false }, "permissions": [ "storage", "declarativeContent", "https:\/\/www.google.com\/" ] } |