Page Rotate

Rotate any web page with the click of a button.

Wat is Page Rotate?

Page Rotate is een Chrome-extensie ontwikkeld door Jesse Skinner, en de belangrijkste functie is "Rotate any web page with the click of a button.".

Download het CRX-bestand van de extensie Page Rotate

Download Page Rotate-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Page Rotate Page Rotate
ID igefdeghmmfballonnobhendpkeinikc
Officiële URL https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc
Beschrijving Rotate any web page with the click of a button.
Bestandsgrootte 17.03 KB
Aantal Installaties 2,000
Huidige Versie 0.1
Laatst Bijgewerkt 2013-11-21
Publicatiedatum 2013-11-21
Beoordeling 2.85/5 Totaal 27 Beoordelingen
Ontwikkelaar Jesse Skinner
Betalingswijze free
Ondersteunde Talen 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"
    }
}