Trump Filter

Remove Donald Trump from the Internet.

Τι είναι το Trump Filter;

Το Trump Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://trumpfilter.com, και η κύρια λειτουργία του είναι "Remove Donald Trump from the Internet.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Trump Filter

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

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

                        In a culture fueled by celebrity and an electorate engineered for polarity, how can any one in these United States of America be surprised by the campaign of Donald J. Trump? Minted by shady back room real estate, distributed by reality television and crowned by incessant polling of ultra-early primary voters, Trump is the latest, hilarious permutation of American leadership. He is not the candidate we need, but surely the one we deserve.

In a political atmosphere where ascendance can be manufactured through attention, the only way to deflate Trump's political star is through suffocation. Trump can only lose if we turn off the TV.

Thus, the Trump Filter is presented as part of the antidote for this toxic candidacy. This Chrome extension will identify parts of a web page likely to contain Donald Trump and erase them from the Internet.

Share with your friends and eliminate the only currency Trump can spend to win: brand recognition.

RELEASE LOG:

1.0.1 - Changed default filter setting to "Mild."
1.1 - Fixed some bugs on news sites.
1.1.1 - jQuery version bump.                    

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

Όνομα Trump Filter Trump Filter
ID lhondapiaknegjpellpodegmeonigjic
Επίσημο URL https://chromewebstore.google.com/detail/trump-filter/lhondapiaknegjpellpodegmeonigjic
Περιγραφή Remove Donald Trump from the Internet.
Μέγεθος Αρχείου 81.4 KB
Αριθμός Εγκαταστάσεων 4,432
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2020-03-19
Ημερομηνία Δημοσίευσης 2020-03-18
Αξιολόγηση 3.29/5 Συνολικά 345 Αξιολογήσεις
Προγραμματιστής https://trumpfilter.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.trumpfilter.com
Διεύθυνση URL της Σελίδας Βοήθειας http://www.trumpfilter.com
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trump Filter",
    "version": "1.1.2",
    "description": "Remove Donald Trump from the Internet.",
    "page_action": {
        "default_icon": "images\/icon-19x19.png",
        "default_title": "Warning: Trump is on this page!"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_globs": [
                "*:\/\/*trumpfilter.com*",
                "*:\/\/*github.com*"
            ],
            "js": [
                "js\/jquery-3.1.1.min.js",
                "js\/filter.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "19": "images\/icon-19x19.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png",
        "130": "images\/icon-130x130.png",
        "550": "images\/icon-550x550.png"
    },
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}