Page Rotate

Rotate any web page with the click of a button.

¿Qué es Page Rotate?

Page Rotate es una extensión de Chrome desarrollada por Jesse Skinner, y su función principal es "Rotate any web page with the click of a button.".

Descargar Archivo CRX de la Extensión Page Rotate

Descarga archivos de extensión Page Rotate en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                                            

Información Básica de la Extensión

Nombre Page Rotate Page Rotate
ID igefdeghmmfballonnobhendpkeinikc
URL Oficial https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc
Descripción Rotate any web page with the click of a button.
Tamaño del Archivo 17.03 KB
Cantidad de Instalaciones 2,000
Versión Actual 0.1
Última Actualización 2013-11-21
Fecha de Publicación 2013-11-21
Calificación 2.85/5 Total de 27 Calificaciones
Desarrollador Jesse Skinner
Tipo de Pago free
Idiomas Soportados 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"
    }
}