Celeb Replacer

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

Co to jest Celeb Replacer?

Celeb Replacer to rozszerzenie Chrome opracowane przez Jamie Farrelly, a jego główną funkcją jest „Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Celeb Replacer

Pobierz pliki rozszerzeń Celeb Replacer 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Celeb Replacer Celeb Replacer
ID ecefjchkchdojnmjiholejpbccjiklog
Oficjalny URL https://chromewebstore.google.com/detail/celeb-replacer/ecefjchkchdojnmjiholejpbccjiklog
Opis Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.
Rozmiar pliku 35.25 KB
Liczba instalacji 368
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2015-01-05
Data Publikacji 2015-01-05
Ocena 2.20/5 Łącznie 5 Oceny
Deweloper Jamie Farrelly
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": "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"
}