Hide OkCupid Likes
This extension allows users to customize the display of OkCupid likes.
Hide OkCupid Likesคืออะไร?
Hide OkCupid Likes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shanzilla และคุณลักษณะหลักของมันคือ "This extension allows users to customize the display of OkCupid likes."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide OkCupid Likes
ดาวน์โหลดไฟล์ส่วนขยาย Hide OkCupid Likes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | mpnlfccfhpkgfiofaajolmjcofbhfdbj |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/hide-okcupid-likes/mpnlfccfhpkgfiofaajolmjcofbhfdbj |
คำอธิบาย | This extension allows users to customize the display of OkCupid likes. |
ขนาดไฟล์ | 19.93 KB |
จำนวนการติดตั้ง | 38 |
เวอร์ชันปัจจุบัน | 2.0.2 |
อัปเดตครั้งล่าสุด | 2020-09-02 |
วันที่เผยแพร่ | 2020-05-05 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | shanzilla |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/shanzilla/hide-okcupid-likes |
ภาษาที่รองรับ | 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'" } |