Hide OkCupid Likes
This extension allows users to customize the display of OkCupid likes.
Was ist Hide OkCupid Likes?
Hide OkCupid Likes ist eine Chrome-Erweiterung, die von shanzilla entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows users to customize the display of OkCupid likes.".
Erweiterungsscreenshots
Hide OkCupid Likes-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hide OkCupid Likes-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
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Offizielle URL | https://chrome.google.com/webstore/detail/hide-okcupid-likes/mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Beschreibung | This extension allows users to customize the display of OkCupid likes. |
Dateigröße | 19.93 KB |
Installationsanzahl | 38 |
Aktuelle Version | 2.0.2 |
Letztes Update | 2020-09-02 |
Veröffentlichungsdatum | 2020-05-05 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | shanzilla |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/shanzilla/hide-okcupid-likes |
Unterstützte Sprachen | 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'" } |