Hide OkCupid Likes

This extension allows users to customize the display of OkCupid likes.

Hide OkCupid Likes là gì?

Hide OkCupid Likes là một tiện ích mở rộng Chrome được phát triển bởi shanzilla, và tính năng chính của nó là "This extension allows users to customize the display of OkCupid likes.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hide OkCupid Likes

Tải xuống các tệp mở rộng Hide OkCupid Likes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hide OkCupid Likes Hide OkCupid Likes
ID mpnlfccfhpkgfiofaajolmjcofbhfdbj
URL Chính Thức https://chrome.google.com/webstore/detail/hide-okcupid-likes/mpnlfccfhpkgfiofaajolmjcofbhfdbj
Mô tả This extension allows users to customize the display of OkCupid likes.
Kích Thước Tệp 19.93 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 2.0.2
Cập Nhật Lần Cuối 2020-09-02
Ngày Phát Hành 2020-05-05
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển shanzilla
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/shanzilla/hide-okcupid-likes
Ngôn Ngữ Được Hỗ Trợ 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'"
}