MyLogo for Google

Change Google Logo into Your Name!

MyLogo for Googleคืออะไร?

MyLogo for Google เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gamitisa.com และคุณลักษณะหลักของมันคือ "Change Google Logo into Your Name!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MyLogo for Google

ดาวน์โหลดไฟล์ส่วนขยาย 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 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\/"
    ]
}