Flingster Filter
Filter Flingster users by gender
什么是Flingster Filter?
Flingster Filter是由Discord Notebook开发的Chrome扩展程序,该扩展的主要功能是“Filter Flingster users by gender”。
扩展截图
下载Flingster Filter扩展crx文件
下载Flingster 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 | bjphdgiciolfklbdpknjobaaefdgfmjd |
官方URL | https://chrome.google.com/webstore/detail/flingster-filter/bjphdgiciolfklbdpknjobaaefdgfmjd |
简介 | Filter Flingster users by gender |
文件大小 | 99.25 KB |
安装次数 | 1,640 |
当前版本 | 0.0.1 |
更新时间 | 2020-12-06 |
上架时间 | 2020-12-06 |
评分 | 3.67/5 共3次评分 |
开发者 | Discord Notebook |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flingster Filter", "version": "0.0.1", "manifest_version": 2, "description": "Filter Flingster users by gender", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon48.png", "default_title": "Flingster Filter", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "storage" ], "background": { "scripts": [ "src\/background\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/flingster.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |