Chatrandom Filter
Filter Chatrandom users by gender
什么是Chatrandom Filter?
Chatrandom Filter是由Discord Notebook开发的Chrome扩展程序,该扩展的主要功能是“Filter Chatrandom users by gender”。
扩展截图
下载Chatrandom Filter扩展crx文件
下载Chatrandom Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | nokhdmifgniahpkjgmcecledffigckmn |
官方URL | https://chrome.google.com/webstore/detail/chatrandom-filter/nokhdmifgniahpkjgmcecledffigckmn |
简介 | Filter Chatrandom users by gender |
文件大小 | 71.16 KB |
安装次数 | 1,001 |
当前版本 | 0.0.1 |
更新时间 | 2020-12-06 |
上架时间 | 2020-12-06 |
评分 | 5.00/5 共1次评分 |
开发者 | Discord Notebook |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } ] } |