Celeb Replacer

Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.

O que é Celeb Replacer?

Celeb Replacer é uma extensão do Chrome desenvolvida por Jamie Farrelly, e sua principal característica é "Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Celeb Replacer

Baixe arquivos de extensão Celeb 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

                        Replaces some well known celebrities such as Kim Jong Un to other celebrities (in this case Kim Kardashian). Can end up being quite funny now and again!

At the moment there aren't too many celebrities covered but if you have any suggestions I'd be more than happy to add them in. Feel free to leave suggestions in the review section or tweet me @Jamie_Farrelly                    

Informações Básicas da Extensão

Nome Celeb Replacer Celeb Replacer
ID ecefjchkchdojnmjiholejpbccjiklog
URL Oficial https://chromewebstore.google.com/detail/celeb-replacer/ecefjchkchdojnmjiholejpbccjiklog
Descrição Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.
Tamanho do Arquivo 35.25 KB
Contagem de Instalações 368
Versão Atual 0.0.0.1
Última Atualização 2015-01-05
Data de Publicação 2015-01-05
Classificação 2.20/5 Total de 5 Avaliações
Desenvolvedor Jamie Farrelly
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Celeb Replacer",
    "version": "0.0.0.1",
    "description": "Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.",
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19-on.png",
        "default_title": "Toggle Celeb Replacer"
    },
    "content_security_policy": "default-src 'none'; script-src 'self'",
    "options_page": "options.html"
}