Raptorize for Chrome

Instant Velociraptor on any page

什么是Raptorize for Chrome?

Raptorize for Chrome是由https://www.brovalex.com开发的Chrome扩展程序,该扩展的主要功能是“Instant Velociraptor on any page”。

扩展截图

screenshot

下载Raptorize for Chrome扩展crx文件

下载Raptorize for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Raptorize for Chrome Raptorize for Chrome
ID clicandocldajmalkpkjhfpgbjgllcia
官方URL https://chromewebstore.google.com/detail/raptorize-for-chrome/clicandocldajmalkpkjhfpgbjgllcia
简介 Instant Velociraptor on any page
文件大小 548 KB
安装次数 442
当前版本 1.1
更新时间 2017-04-05
上架时间 2017-04-05
评分 4.40/5 共10次评分
开发者 https://www.brovalex.com
付费类型 free
支持的语言 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"
    ]
}