Fame: Replace Celebrity Names

An example of replacing names using a browser extension

Co je Fame: Replace Celebrity Names?

Fame: Replace Celebrity Names je rozšíření Chrome vyvinuté Heather Akers-Healy, a jeho hlavní funkcí je „An example of replacing names using a browser extension“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Fame: Replace Celebrity Names

Stáhněte si soubory rozšíření Fame: Replace Celebrity Names ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Fame: Replace Celebrity Names Fame: Replace Celebrity Names
ID afdjhelhghccihihpcimafhclbamhadj
Oficiální URL https://chrome.google.com/webstore/detail/fame-replace-celebrity-na/afdjhelhghccihihpcimafhclbamhadj
Popis An example of replacing names using a browser extension
Velikost souboru 11.4 KB
Počet instalací 14
Aktuální Verze 0.1.0
Poslední Aktualizace 2015-06-04
Datum Vydání 2015-06-04
Vývojář Heather Akers-Healy
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}