SpinIt

Makes things spin.

Wat is SpinIt?

SpinIt is een Chrome-extensie ontwikkeld door Jonathan Sudiaman, en de belangrijkste functie is "Makes things spin.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie SpinIt

Download SpinIt-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam SpinIt SpinIt
ID cncehcnmomdhdbpfplpibmaomhnifdpc
Officiële URL https://chromewebstore.google.com/detail/spinit/cncehcnmomdhdbpfplpibmaomhnifdpc
Beschrijving Makes things spin.
Bestandsgrootte 17.91 KB
Aantal Installaties 512
Huidige Versie 0.1
Laatst Bijgewerkt 2018-06-08
Publicatiedatum 2018-06-07
Beoordeling 4.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Jonathan Sudiaman
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://gitlab.com/jsudiaman/SpinIt
Ondersteunde Talen 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"
    }
}