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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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"
    }
}