MyLogo for Google

Change Google Logo into Your Name!

Vad är MyLogo for Google?

MyLogo for Google är en Chrome-tillägg utvecklad av https://gamitisa.com, och dess huvudfunktion är "Change Google Logo into Your Name!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner MyLogo for Google-förlängningens CRX-fil

Ladda ner MyLogo for Google-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn MyLogo for Google MyLogo for Google
ID camafjgigpbkknfbkbbinffapgpjpnjl
Officiell webbadress https://chromewebstore.google.com/detail/mylogo-for-google/camafjgigpbkknfbkbbinffapgpjpnjl
Beskrivning Change Google Logo into Your Name!
Filstorlek 33.11 KB
Antal Installationer 84
Aktuell Version 2.2.3
Senast Uppdaterad 2021-08-30
Publiceringsdatum 2021-08-16
Betyg 2.00/5 Totalt 1 Betyg
Utvecklare https://gamitisa.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://gamitisa.com/
Hjälpsida URL https://gamitisa.com/contact/
URL till Sekretesspolicy Sidan https://gamitisa.com/privacy-policy.php
Stödda Språk 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\/"
    ]
}