Page Rotate

Rotate any web page with the click of a button.

ما هو Page Rotate؟

Page Rotate هو إضافة Chrome تم تطويرها بواسطة Jesse Skinner، والميزة الرئيسية لها هي "Rotate any web page with the click of a button.".

تحميل ملف CRX للإضافة Page Rotate

قم بتنزيل ملفات الامتداد Page Rotate بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}