Chatrandom Filter

Filter Chatrandom users by gender

Chatrandom Filter là gì?

Chatrandom Filter là một tiện ích mở rộng Chrome được phát triển bởi Discord Notebook, và tính năng chính của nó là "Filter Chatrandom users by gender".

Ả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 Chatrandom Filter

Tải xuống các tệp mở rộng Chatrandom Filter 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

                        Tired of pressing next all the time? Let us do it for you!

The extension will automatically next the person if the gender they selected does not match the ones you choose.

Also, you can now skip to the next person by pressing escape.                    

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

Tên Chatrandom Filter Chatrandom Filter
ID nokhdmifgniahpkjgmcecledffigckmn
URL Chính Thức https://chrome.google.com/webstore/detail/chatrandom-filter/nokhdmifgniahpkjgmcecledffigckmn
Mô tả Filter Chatrandom users by gender
Kích Thước Tệp 71.16 KB
Số Lần Cài Đặt 1,001
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-12-06
Ngày Phát Hành 2020-12-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Discord Notebook
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chatrandom Filter",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Filter Chatrandom users by gender",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Chatrandom Filter",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chatrandom.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}