Replacer
Replaces all images with an image of your choice
O que é Replacer?
Replacer é uma extensão do Chrome desenvolvida por michaelm244, e sua principal característica é "Replaces all images with an image of your choice".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Replacer
Baixe arquivos de extensão Replacer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | nkkofabfinoleplbkkbmhhkjmomdgpag |
URL Oficial | https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag |
Descrição | Replaces all images with an image of your choice |
Tamanho do Arquivo | 606 KB |
Contagem de Instalações | 294 |
Versão Atual | 1.0 |
Última Atualização | 2014-01-18 |
Data de Publicação | 2014-01-18 |
Classificação | 2.07/5 Total de 14 Avaliações |
Desenvolvedor | michaelm244 |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/michaelm244/replacer |
Idiomas Suportados | 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'" } |