Replacer
Replaces all images with an image of your choice
Qu'est-ce que Replacer ?
Replacer est une extension Chrome développée par michaelm244, et sa fonction principale est "Replaces all images with an image of your choice".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Replacer
Téléchargez les fichiers d'extension Replacer 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
There's all these extensions that let you replace all images on the page with ____. So, why not make your own? Just enter something you want to search, and all the images on the page will get replaced with that.
Informations de Base sur l'Extension
Nom | |
ID | nkkofabfinoleplbkkbmhhkjmomdgpag |
URL Officiel | https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag |
Description | Replaces all images with an image of your choice |
Taille du Fichier | 606 KB |
Nombre d'Installations | 294 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-01-18 |
Date de Publication | 2014-01-18 |
Évaluation | 2.07/5 Total 14 Évaluations |
Développeur | michaelm244 |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/michaelm244/replacer |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Replacer", "description": "Replaces all images with an image of your choice", "version": "1.0", "manifest_version": 2, "permissions": [ "tabs", "https:\/\/www.google.com\/" ], "content_scripts": [ { "js": [ "background.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google.com; object-src 'self'" } |