MyLogo for Google
Change Google Logo into Your Name!
Qu'est-ce que MyLogo for Google ?
MyLogo for Google est une extension Chrome développée par https://gamitisa.com, et sa fonction principale est "Change Google Logo into Your Name!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension MyLogo for Google
Téléchargez les fichiers d'extension MyLogo for Google au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
With this Extension, Google Logo can be replaced with Custom Text Logo in Google Homepage and Search Result Page.
Informations de Base sur l'Extension
Nom | MyLogo for Google |
ID | camafjgigpbkknfbkbbinffapgpjpnjl |
URL Officiel | https://chromewebstore.google.com/detail/mylogo-for-google/camafjgigpbkknfbkbbinffapgpjpnjl |
Description | Change Google Logo into Your Name! |
Taille du Fichier | 33.11 KB |
Nombre d'Installations | 84 |
Version Actuelle | 2.2.3 |
Dernière Mise à Jour | 2021-08-30 |
Date de Publication | 2021-08-16 |
Évaluation | 2.00/5 Total 1 Évaluations |
Développeur | https://gamitisa.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://gamitisa.com/ |
URL de la Page d'Aide | https://gamitisa.com/contact/ |
URL de la Page de Politique de Confidentialité | https://gamitisa.com/privacy-policy.php |
Langues Prises en Charge | 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\/" ] } |