Hide OkCupid Likes
This extension allows users to customize the display of OkCupid likes.
Apa itu Hide OkCupid Likes?
Hide OkCupid Likes adalah ekstensi Chrome yang dikembangkan oleh shanzilla, dan fitur utamanya adalah "This extension allows users to customize the display of OkCupid likes.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Hide OkCupid Likes
Unduh file ekstensi Hide OkCupid Likes dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | mpnlfccfhpkgfiofaajolmjcofbhfdbj |
URL Resmi | https://chrome.google.com/webstore/detail/hide-okcupid-likes/mpnlfccfhpkgfiofaajolmjcofbhfdbj |
Deskripsi | This extension allows users to customize the display of OkCupid likes. |
Ukuran File | 19.93 KB |
Jumlah Instalasi | 38 |
Versi Saat Ini | 2.0.2 |
Terakhir Diperbarui | 2020-09-02 |
Tanggal Publikasi | 2020-05-05 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | shanzilla |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/shanzilla/hide-okcupid-likes |
Bahasa yang Didukung | 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'" } |