Page Rotate

Rotate any web page with the click of a button.

Page Rotate란 무엇입니까?

Page Rotate은(는) Jesse Skinner에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Rotate any web page with the click of a button."입니다.

Page Rotate 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                                            

확장 프로그램 기본 정보

이름 Page Rotate Page Rotate
ID igefdeghmmfballonnobhendpkeinikc
공식 URL https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc
설명 Rotate any web page with the click of a button.
파일 크기 17.03 KB
설치 횟수 2,000
현재 버전 0.1
최근 업데이트 2013-11-21
출시 날짜 2013-11-21
평점 2.85/5 총 27 개의 평점
개발자 Jesse Skinner
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page Rotate",
    "version": "0.1",
    "description": "Rotate any web page with the click of a button.",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "pagerotate.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        },
        "default_title": "Page Rotate"
    }
}