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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}