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 |
| 官方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'"
} | |