SpinIt

Makes things spin.

What is SpinIt?

SpinIt is a Chrome extension developed by Jonathan Sudiaman, and its main feature is "Makes things spin.".

Extension Screenshots

screenshot
screenshot

Download SpinIt Extension CRX File

Download SpinIt extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SpinIt SpinIt
ID cncehcnmomdhdbpfplpibmaomhnifdpc
Official URL https://chromewebstore.google.com/detail/spinit/cncehcnmomdhdbpfplpibmaomhnifdpc
Description Makes things spin.
File Size 17.91 KB
Installation Count 512
Current Version 0.1
Last Updated 2018-06-08
Publish Date 2018-06-07
Rating 4.33/5 Total 3 Ratings
Developer Jonathan Sudiaman
Email [email protected]
Payment Type free
Extension Website https://gitlab.com/jsudiaman/SpinIt
Supported Languages 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"
    }
}