MyLogo for Google

Change Google Logo into Your Name!

Was ist MyLogo for Google?

MyLogo for Google ist eine Chrome-Erweiterung, die von https://gamitisa.com entwickelt wurde, und ihr Hauptmerkmal ist "Change Google Logo into Your Name!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

MyLogo for Google-Erweiterungs-CRX-Datei herunterladen

Laden Sie MyLogo for Google-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        With this Extension, Google Logo can be replaced with Custom Text Logo in Google Homepage and Search Result Page.                    

Grundlegende Informationen zur Erweiterung

Name MyLogo for Google MyLogo for Google
ID camafjgigpbkknfbkbbinffapgpjpnjl
Offizielle URL https://chromewebstore.google.com/detail/mylogo-for-google/camafjgigpbkknfbkbbinffapgpjpnjl
Beschreibung Change Google Logo into Your Name!
Dateigröße 33.11 KB
Installationsanzahl 84
Aktuelle Version 2.2.3
Letztes Update 2021-08-30
Veröffentlichungsdatum 2021-08-16
Bewertung 2.00/5 Insgesamt 1 Bewertungen
Entwickler https://gamitisa.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://gamitisa.com/
Hilfeseite URL https://gamitisa.com/contact/
URL der Datenschutzrichtlinien-Seite https://gamitisa.com/privacy-policy.php
Unterstützte Sprachen 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\/"
    ]
}