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
官方網址 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
電子郵箱 [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"
    }
}