Redskins Web Skin

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

Redskins Web Skin란 무엇입니까?

Redskins Web Skin은(는) https://redskins.solutions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace the term “Redskins” with a more dignified name in your browser, and in the NFL."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Redskins Web Skin 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Redskins Web Skin Redskins Web Skin
ID fkbipghlpfabodkllkbjkdclimfiocga
공식 URL https://chromewebstore.google.com/detail/redskins-web-skin/fkbipghlpfabodkllkbjkdclimfiocga
설명 Replace the term “Redskins” with a more dignified name in your browser, and in the NFL.
파일 크기 56.96 KB
설치 횟수 103
현재 버전 1.0.3
최근 업데이트 2014-11-20
출시 날짜 2014-11-19
평점 4.00/5 총 9 개의 평점
개발자 https://redskins.solutions
결제 유형 free
확장 프로그램 웹 사이트 http://redskins.solutions
지원되는 언어 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"
        }
    ]
}