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 |
电子邮箱 | [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\/" ] } |