Raptorize for Chrome

Instant Velociraptor on any page

Cos'è Raptorize for Chrome?

Raptorize for Chrome è un'estensione di Chrome sviluppata da https://www.brovalex.com, e la sua funzione principale è "Instant Velociraptor on any page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Raptorize for Chrome

Scarica i file di estensione Raptorize for Chrome in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A plugin that unleashes a Raptor on to any page. Make every page you visit slightly more awesome with some extra RAWWR. 

If you like Raptorize, check out Goatarize for Chrome!

** Note: if you have any tab open when you install the plugin, these pages need to be refreshed for raptor to rawrr them. **

Version 1.1: Added warning to reload the page on first install.

Adapted script from Zurb's Playground
http://zurb.com/playground/jquery-raptorize                    

Informazioni di Base sull'Estensione

Nome Raptorize for Chrome Raptorize for Chrome
ID clicandocldajmalkpkjhfpgbjgllcia
URL Ufficiale https://chromewebstore.google.com/detail/raptorize-for-chrome/clicandocldajmalkpkjhfpgbjgllcia
Descrizione Instant Velociraptor on any page
Dimensione del File 548 KB
Conteggio Installazioni 442
Versione Corrente 1.1
Ultimo Aggiornamento 2017-04-05
Data di Pubblicazione 2017-04-05
Valutazione 4.40/5 Totale 10 Valutazioni
Sviluppatore https://www.brovalex.com
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Raptorize for Chrome",
    "version": "1.1",
    "description": "Instant Velociraptor on any page",
    "browser_action": {
        "name": "Raptorize",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "jquery.raptorize.1.0.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "inject.js"
        ]
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "raptor-sound.ogg",
        "raptor.png",
        "raptor-sound.mp3"
    ]
}