Redskins Web Skin

Replace the term “Redskins” with a more dignified name in your browser, and in the NFL.

Was ist Redskins Web Skin?

Redskins Web Skin ist eine Chrome-Erweiterung, die von https://redskins.solutions entwickelt wurde, und ihr Hauptmerkmal ist "Replace the term “Redskins” with a more dignified name in your browser, and in the NFL.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Redskins Web Skin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Redskins Web Skin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The word “Redskins” is racist. Yet our nation’s capital plays host to an NFL organization that uses the term as its team name — the Washington Redskins. It’s offensive. It’s unnecessary. And it needs to be replaced.

That’s where the Redskins Web Skin comes in. Simply install the extension to replace the term “Redskins” with a more dignified term on the web. And then sign the petition to make Dan Snyder replace the term with something more noble on the field.                    

Grundlegende Informationen zur Erweiterung

Name Redskins Web Skin Redskins Web Skin
ID fkbipghlpfabodkllkbjkdclimfiocga
Offizielle URL https://chromewebstore.google.com/detail/redskins-web-skin/fkbipghlpfabodkllkbjkdclimfiocga
Beschreibung Replace the term “Redskins” with a more dignified name in your browser, and in the NFL.
Dateigröße 56.96 KB
Installationsanzahl 103
Aktuelle Version 1.0.3
Letztes Update 2014-11-20
Veröffentlichungsdatum 2014-11-19
Bewertung 4.00/5 Insgesamt 9 Bewertungen
Entwickler https://redskins.solutions
Zahlungsart free
Erweiterungswebsite http://redskins.solutions
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redskins Web Skin",
    "short_name": "Redskins Web Skin",
    "description": "Replace the term \u201cRedskins\u201d with a more dignified name in your browser, and in the NFL.",
    "author": "Your friendly neighborhood football fan",
    "version": "1.0.3",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "management",
        "*:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/localhost\/*",
        "http:\/\/localhost:8888\/*"
    ],
    "icons": {
        "16": "logo16x16.png",
        "19": "logo19x19.png",
        "32": "logo32x32.png",
        "48": "logo48x48.png",
        "96": "logo96x96.png",
        "128": "logo128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "logo19x19.png"
        },
        "default_title": "Redskins Web Skin",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.change.org\/*",
                "*:\/\/*.redskins.solutions\/*"
            ],
            "js": [
                "findAndReplaceDOMText.js",
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}