Page Rotate

Rotate any web page with the click of a button.

Page Rotate क्या है?

Page Rotate Jesse Skinner द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rotate any web page with the click of a button."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Page Rotate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                                            

एक्सटेंशन की मूल जानकारी

नाम Page Rotate Page Rotate
ID igefdeghmmfballonnobhendpkeinikc
आधिकारिक URL https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc
विवरण Rotate any web page with the click of a button.
फ़ाइल का आकार 17.03 KB
स्थापना संख्या 2,000
वर्तमान संस्करण 0.1
अंतिम अपडेट 2013-11-21
प्रकाशन तिथि 2013-11-21
रेटिंग 2.85/5 कुल 27 रेटिंग्स
डेवलपर Jesse Skinner
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}