Hide OkCupid Likes
This extension allows users to customize the display of OkCupid likes.
What is Hide OkCupid Likes?
Hide OkCupid Likes is a Chrome extension developed by shanzilla, and its main feature is "This extension allows users to customize the display of OkCupid likes.".
Extension Screenshots
Download Hide OkCupid Likes Extension CRX File
Download Hide OkCupid Likes 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
Even though OkCupid's Like feature is hidden behind a paywall the number of inaccessible Likes is still prominently displayed to people who don't have A-List accounts. This extension allows you to remove or de-emphasize the Like count that's shown in OkCupid's navigation.
Extension Basic Information
Name | |
ID | mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Official URL | https://chrome.google.com/webstore/detail/hide-okcupid-likes/mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Description | This extension allows users to customize the display of OkCupid likes. |
File Size | 19.93 KB |
Installation Count | 38 |
Current Version | 2.0.2 |
Last Updated | 2020-09-02 |
Publish Date | 2020-05-05 |
Rating | 5.00/5 Total 2 Ratings |
Developer | shanzilla |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/shanzilla/hide-okcupid-likes |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide OkCupid Likes", "version": "2.0.2", "description": "This extension allows users to customize the display of OkCupid likes.", "icons": { "128": "icon128-v2.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs", "storage", "webNavigation" ], "content_scripts": [ { "js": [ "scripts.js" ], "css": [ "style.css" ], "matches": [ "https:\/\/www.okcupid.com\/*" ], "run_at": "document_start", "all_frames": true } ], "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |