SpinIt

Makes things spin.

SpinItとは何ですか?

SpinItはJonathan Sudiamanによって開発されたChromeの拡張機能で、その主な機能は「Makes things spin.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Adds a "Spin it!" item to the right click menu. When the item is selected, the right-clicked element will start spinning around in circles.                    

拡張機能の基本情報

名前 SpinIt SpinIt
ID cncehcnmomdhdbpfplpibmaomhnifdpc
公式URL https://chromewebstore.google.com/detail/spinit/cncehcnmomdhdbpfplpibmaomhnifdpc
説明 Makes things spin.
ファイルサイズ 17.91 KB
インストール数 512
現在のバージョン 0.1
最終更新日 2018-06-08
公開日 2018-06-07
評価 4.33/5 合計 3 レビュー
開発者 Jonathan Sudiaman
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://gitlab.com/jsudiaman/SpinIt
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SpinIt",
    "description": "Makes things spin.",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "spinning.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}