Page Rotate

Rotate any web page with the click of a button.

Qu'est-ce que Page Rotate ?

Page Rotate est une extension Chrome développée par Jesse Skinner, et sa fonction principale est "Rotate any web page with the click of a button.".

Télécharger le fichier CRX de l'extension Page Rotate

Téléchargez les fichiers d'extension Page Rotate au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom Page Rotate Page Rotate
ID igefdeghmmfballonnobhendpkeinikc
URL Officiel https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc
Description Rotate any web page with the click of a button.
Taille du Fichier 17.03 KB
Nombre d'Installations 2,000
Version Actuelle 0.1
Dernière Mise à Jour 2013-11-21
Date de Publication 2013-11-21
Évaluation 2.85/5 Total 27 Évaluations
Développeur Jesse Skinner
Type de Paiement free
Langues Prises en Charge 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"
    }
}