Donald to Darth

This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page

Co to jest Donald to Darth?

Donald to Darth to rozszerzenie Chrome opracowane przez jessehmcdonald, a jego główną funkcją jest „This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Donald to Darth

Pobierz pliki rozszerzeń Donald to Darth 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

                        Well after hearing about all these politics people are getting bored. It is time to spice things up a bit! The Chrome Extension Changes famous politicians names to Star Wars Characters!                    

Podstawowe informacje o rozszerzeniu

Nazwa Donald to Darth Donald to Darth
ID epmmoednmfpdmennmmcedihlcecffdde
Oficjalny URL https://chromewebstore.google.com/detail/donald-to-darth/epmmoednmfpdmennmmcedihlcecffdde
Opis This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page
Rozmiar pliku 7.88 KB
Liczba instalacji 66
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2015-12-19
Data Publikacji 2015-12-19
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper jessehmcdonald
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": "Donald to Darth",
    "description": "This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page",
    "version": "1.4",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}