Hide OkCupid Likes
This extension allows users to customize the display of OkCupid likes.
什麼是Hide OkCupid Likes?
Hide OkCupid Likes是由shanzilla開發的Chrome擴展程式,該擴展的主要功能是“This extension allows users to customize the display of OkCupid likes.”。
擴展截圖
下載Hide OkCupid Likes擴展crx文件
下載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 |
官方網址 | 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'" } |