Not My President

Replace Donald Trump's name on any website with anything you wish. Randomly generate an Obama quote. Redirect whitehouse.gov visits.

Τι είναι το Not My President;

Το Not My President είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ilan.gitter, και η κύρια λειτουργία του είναι "Replace Donald Trump's name on any website with anything you wish. Randomly generate an Obama quote. Redirect whitehouse.gov visits.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Not My President

Λήψη αρχείων επέκτασης Not My President σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Make the Internet Great Again!

This Chrome Extension allows you to replace "Donald Trump, Donald J. Trump, President Trump, and Trump" to anything you'd like (ex: Turd Monster, The Angry Cheeto, etc.)  His name is replaced by "Not My President" by default. To change this, click the Obama icon, then click "Extension Options". It now has a random nickname generator within the options menu.

Other Features:
1. Automatically redirects you from whitehouse.gov to Obama's archived whitehouse.gov page.

2. Get a random Obama quote when you click the Obama icon in the extensions toolbar.

Tips:
1. You'll have to refresh the page to see results after the first installation and if you choose an alternate name.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Not My President Not My President
ID bfnemnbedbmheofgnihjnhlagpobjjpl
Επίσημο URL https://chromewebstore.google.com/detail/not-my-president/bfnemnbedbmheofgnihjnhlagpobjjpl
Περιγραφή Replace Donald Trump's name on any website with anything you wish. Randomly generate an Obama quote. Redirect whitehouse.gov visits.
Μέγεθος Αρχείου 80.21 KB
Αριθμός Εγκαταστάσεων 140
Τρέχουσα Έκδοση 1.13
Τελευταία Ενημέρωση 2018-11-08
Ημερομηνία Δημοσίευσης 2018-11-07
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής ilan.gitter
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Not My President",
    "description": "Replace Donald Trump's name on any website with anything you wish. Randomly generate an Obama quote. Redirect whitehouse.gov visits.",
    "version": "1.13",
    "icons": {
        "128": "sad.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "https:\/\/en.wikiquote.org\/*",
        "*:\/\/whitehouse.gov\/*",
        "*:\/\/www.whitehouse.gov\/*",
        "webRequestBlocking"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}