Flying Buttons

Make all buttons from all website flying

Flying Buttonsとは何ですか?

Flying ButtonsはBastien Le Gallによって開発されたChromeの拡張機能で、その主な機能は「Make all buttons from all website flying」です。

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

screenshot

Flying Buttons拡張機能のCRXファイルをダウンロード

Flying Buttons拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Little extension to prank colleagues, make all buttons and link fly on all websites                    

拡張機能の基本情報

名前 Flying Buttons Flying Buttons
ID eapoficnfaiibccajcioechlbiaadkgg
公式URL https://chromewebstore.google.com/detail/flying-buttons/eapoficnfaiibccajcioechlbiaadkgg
説明 Make all buttons from all website flying
ファイルサイズ 89.45 KB
インストール数 21
現在のバージョン 1.5
最終更新日 2022-03-25
公開日 2022-03-24
評価 5.00/5 合計 2 レビュー
開発者 Bastien Le Gall
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Flying Buttons",
    "description": "Make all buttons from all website flying",
    "version": "1.5",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "service_worker": ".\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": ".\/wing.png",
        "default_popup": ".\/popup.html"
    },
    "icons": {
        "50": ".\/wing.png"
    }
}