Image Rotate Context

Allows you to rotate an image with the right click context menu

Image Rotate Context là gì?

Image Rotate Context là một tiện ích mở rộng Chrome được phát triển bởi robert, và tính năng chính của nó là "Allows you to rotate an image with the right click context menu".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

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

Tải xuống các tệp mở rộng Image Rotate Context 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

                        Adds a "Rotate" menu option when right clicking images allowing you to rotate Right or Left                    

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

Tên Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
URL Chính Thức https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Mô tả Allows you to rotate an image with the right click context menu
Kích Thước Tệp 3.91 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-12-01
Ngày Phát Hành 2018-11-27
Đánh Giá 3.03/5 Tổng số 38 Đánh Giá
Nhà Phát Triển robert
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Rotate Context",
    "manifest_version": 2,
    "version": "1.0.0",
    "description": "Allows you to rotate an image with the right click context menu",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "inpage.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}