Page Rotate

Rotate any web page with the click of a button.

Page Rotate là gì?

Page Rotate là một tiện ích mở rộng Chrome được phát triển bởi Jesse Skinner, và tính năng chính của nó là "Rotate any web page with the click of a button.".

Tải xuống tệp CRX của tiện ích mở rộng Page Rotate

Tải xuống các tệp mở rộng Page Rotate dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Page Rotate Page Rotate
ID igefdeghmmfballonnobhendpkeinikc
URL Chính Thức https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc
Mô tả Rotate any web page with the click of a button.
Kích Thước Tệp 17.03 KB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2013-11-21
Ngày Phát Hành 2013-11-21
Đánh Giá 2.85/5 Tổng số 27 Đánh Giá
Nhà Phát Triển Jesse Skinner
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}