Fame: Replace Celebrity Names

An example of replacing names using a browser extension

Cos'è Fame: Replace Celebrity Names?

Fame: Replace Celebrity Names è un'estensione di Chrome sviluppata da Heather Akers-Healy, e la sua funzione principale è "An example of replacing names using a browser extension".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Fame: Replace Celebrity Names

Scarica i file di estensione Fame: Replace Celebrity Names in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Fame: Replace Celebrity Names Fame: Replace Celebrity Names
ID afdjhelhghccihihpcimafhclbamhadj
URL Ufficiale https://chrome.google.com/webstore/detail/fame-replace-celebrity-na/afdjhelhghccihihpcimafhclbamhadj
Descrizione An example of replacing names using a browser extension
Dimensione del File 11.4 KB
Conteggio Installazioni 14
Versione Corrente 0.1.0
Ultimo Aggiornamento 2015-06-04
Data di Pubblicazione 2015-06-04
Sviluppatore Heather Akers-Healy
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}