Redskins Web Skin
Replace the term “Redskins” with a more dignified name in your browser, and in the NFL.
Redskins Web Skin là gì?
Redskins Web Skin là một tiện ích mở rộng Chrome được phát triển bởi https://redskins.solutions, và tính năng chính của nó là "Replace the term “Redskins” with a more dignified name in your browser, and in the NFL.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Redskins Web Skin
Tải xuống các tệp mở rộng Redskins Web Skin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Redskins Web Skin |
ID | fkbipghlpfabodkllkbjkdclimfiocga |
URL Chính Thức | https://chromewebstore.google.com/detail/redskins-web-skin/fkbipghlpfabodkllkbjkdclimfiocga |
Mô tả | Replace the term “Redskins” with a more dignified name in your browser, and in the NFL. |
Kích Thước Tệp | 56.96 KB |
Số Lần Cài Đặt | 103 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2014-11-20 |
Ngày Phát Hành | 2014-11-19 |
Đánh Giá | 4.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | https://redskins.solutions |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://redskins.solutions |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |