Fame: Replace Celebrity Names

An example of replacing names using a browser extension

O que é Fame: Replace Celebrity Names?

Fame: Replace Celebrity Names é uma extensão do Chrome desenvolvida por Heather Akers-Healy, e sua principal característica é "An example of replacing names using a browser extension".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Fame: Replace Celebrity Names

Baixe arquivos de extensão Fame: Replace Celebrity Names 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

                        This extension mocks celebrity culture by replacing some A-list celebrity names with the phrase "Someone Better Looking Than You". It also includes code to correct the names of certain transgender individuals.                    

Informações Básicas da Extensão

Nome Fame: Replace Celebrity Names Fame: Replace Celebrity Names
ID afdjhelhghccihihpcimafhclbamhadj
URL Oficial https://chrome.google.com/webstore/detail/fame-replace-celebrity-na/afdjhelhghccihihpcimafhclbamhadj
Descrição An example of replacing names using a browser extension
Tamanho do Arquivo 11.4 KB
Contagem de Instalações 14
Versão Atual 0.1.0
Última Atualização 2015-06-04
Data de Publicação 2015-06-04
Desenvolvedor Heather Akers-Healy
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fame: Replace Celebrity Names",
    "version": "0.1.0",
    "description": "An example of replacing names using a browser extension",
    "author": "Heather Akers-Healy",
    "browser_action": {
        "default_title": "Use this to open the popup",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "replace.js"
            ],
            "run_at": "document_end"
        }
    ]
}