Raptorize for Chrome

Instant Velociraptor on any page

What is Raptorize for Chrome?

Raptorize for Chrome is a Chrome extension developed by https://www.brovalex.com, and its main feature is "Instant Velociraptor on any page".

Extension Screenshots

screenshot

Download Raptorize for Chrome Extension CRX File

Download Raptorize for Chrome 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

                        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                    

Extension Basic Information

Name Raptorize for Chrome Raptorize for Chrome
ID clicandocldajmalkpkjhfpgbjgllcia
Official URL https://chromewebstore.google.com/detail/raptorize-for-chrome/clicandocldajmalkpkjhfpgbjgllcia
Description Instant Velociraptor on any page
File Size 548 KB
Installation Count 442
Current Version 1.1
Last Updated 2017-04-05
Publish Date 2017-04-05
Rating 4.40/5 Total 10 Ratings
Developer https://www.brovalex.com
Payment Type free
Supported Languages 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"
    ]
}