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 |
Eメール | [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'" } |