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ファイルをダウンロード

Page Rotate拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 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"
    }
}