Page Rotate

Rotate any web page with the click of a button.

What is Page Rotate?

Page Rotate is a Chrome extension developed by Jesse Skinner, and its main feature is "Rotate any web page with the click of a button.".

Download Page Rotate Extension CRX File

Download Page Rotate 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

                                            

Extension Basic Information

Name Page Rotate Page Rotate
ID igefdeghmmfballonnobhendpkeinikc
Official URL https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc
Description Rotate any web page with the click of a button.
File Size 17.03 KB
Installation Count 2,000
Current Version 0.1
Last Updated 2013-11-21
Publish Date 2013-11-21
Rating 2.85/5 Total 27 Ratings
Developer Jesse Skinner
Payment Type free
Supported Languages 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"
    }
}