Hide OkCupid Likes
This extension allows users to customize the display of OkCupid likes.
Wat is Hide OkCupid Likes?
Hide OkCupid Likes is een Chrome-extensie ontwikkeld door shanzilla, en de belangrijkste functie is "This extension allows users to customize the display of OkCupid likes.".
Extensie Screenshots
Download het CRX-bestand van de extensie Hide OkCupid Likes
Download Hide OkCupid Likes-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Officiële URL | https://chrome.google.com/webstore/detail/hide-okcupid-likes/mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Beschrijving | This extension allows users to customize the display of OkCupid likes. |
Bestandsgrootte | 19.93 KB |
Aantal Installaties | 38 |
Huidige Versie | 2.0.2 |
Laatst Bijgewerkt | 2020-09-02 |
Publicatiedatum | 2020-05-05 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | shanzilla |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/shanzilla/hide-okcupid-likes |
Ondersteunde Talen | 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'" } |