Fame: Replace Celebrity Names

An example of replacing names using a browser extension

Co to jest Fame: Replace Celebrity Names?

Fame: Replace Celebrity Names to rozszerzenie Chrome opracowane przez Heather Akers-Healy, a jego główną funkcją jest „An example of replacing names using a browser extension”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Fame: Replace Celebrity Names

Pobierz pliki rozszerzeń Fame: Replace Celebrity Names w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Fame: Replace Celebrity Names Fame: Replace Celebrity Names
ID afdjhelhghccihihpcimafhclbamhadj
Oficjalny URL https://chrome.google.com/webstore/detail/fame-replace-celebrity-na/afdjhelhghccihihpcimafhclbamhadj
Opis An example of replacing names using a browser extension
Rozmiar pliku 11.4 KB
Liczba instalacji 14
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2015-06-04
Data Publikacji 2015-06-04
Deweloper Heather Akers-Healy
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}