Hide Chess Rating
Hides player ratings on chess.com
What is Hide Chess Rating?
Hide Chess Rating is a Chrome extension developed by hcardealdemelo, and its main feature is "Hides player ratings on chess.com".
Extension Screenshots
Download Hide Chess Rating Extension CRX File
Download Hide Chess Rating extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension hides all rating related info from the chess.com website.
Extension Basic Information
Name | Hide Chess Rating |
ID | mgnopdliobkllehdclmocgejkeckpoph |
Official URL | https://chromewebstore.google.com/detail/hide-chess-rating/mgnopdliobkllehdclmocgejkeckpoph |
Description | Hides player ratings on chess.com |
File Size | 13.88 KB |
Installation Count | 46 |
Current Version | 1.0.1 |
Last Updated | 2020-12-27 |
Publish Date | 2020-12-26 |
Rating | 5.00/5 Total 1 Ratings |
Developer | hcardealdemelo |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Chess Rating", "version": "1.0.1", "description": "Hides player ratings on chess.com", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "content_scripts": [ { "css": [ "src\/hide.css" ], "js": [ "src\/hide.js" ], "matches": [ "http:\/\/www.chess.com\/*", "https:\/\/www.chess.com\/*" ] } ], "page_action": { "default_popup": "src\/popup.html", "default_icon": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } }, "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "manifest_version": 2 } |