Page Rotate

Rotate any web page with the click of a button.

Cos'è Page Rotate?

Page Rotate è un'estensione di Chrome sviluppata da Jesse Skinner, e la sua funzione principale è "Rotate any web page with the click of a button.".

Scarica il file CRX dell'estensione Page Rotate

Scarica i file di estensione Page Rotate in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome Page Rotate Page Rotate
ID igefdeghmmfballonnobhendpkeinikc
URL Ufficiale https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc
Descrizione Rotate any web page with the click of a button.
Dimensione del File 17.03 KB
Conteggio Installazioni 2,000
Versione Corrente 0.1
Ultimo Aggiornamento 2013-11-21
Data di Pubblicazione 2013-11-21
Valutazione 2.85/5 Totale 27 Valutazioni
Sviluppatore Jesse Skinner
Tipo di Pagamento free
Lingue Supportate 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"
    }
}