Flingster Filter

Filter Flingster users by gender

Flingster Filterとは何ですか?

Flingster FilterはDiscord Notebookによって開発されたChromeの拡張機能で、その主な機能は「Filter Flingster users by gender」です。

拡張機能のスクリーンショット

screenshot

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.                    

拡張機能の基本情報

名前 Flingster Filter Flingster Filter
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
Eメール [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"
            ]
        }
    ]
}