Donald to Darth

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

Vad är Donald to Darth?

Donald to Darth är en Chrome-tillägg utvecklad av jessehmcdonald, och dess huvudfunktion är "This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Donald to Darth-förlängningens CRX-fil

Ladda ner Donald to Darth-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Donald to Darth Donald to Darth
ID epmmoednmfpdmennmmcedihlcecffdde
Officiell webbadress https://chromewebstore.google.com/detail/donald-to-darth/epmmoednmfpdmennmmcedihlcecffdde
Beskrivning This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page
Filstorlek 7.88 KB
Antal Installationer 66
Aktuell Version 1.4
Senast Uppdaterad 2015-12-19
Publiceringsdatum 2015-12-19
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare jessehmcdonald
Betalningssätt free
Stödda Språk 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"
        }
    ]
}