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. 擴展基本資訊
| 名稱 | |
| ID | camafjgigpbkknfbkbbinffapgpjpnjl |
| 官方網址 | 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\/"
]
} | |