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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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'" } |