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
电子邮箱 [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"
    }
}