Simple Image Rotator

(extremely) basic extension to rotate images in-place

Simple Image Rotator là gì?

Simple Image Rotator là một tiện ích mở rộng Chrome được phát triển bởi major, và tính năng chính của nó là "(extremely) basic extension to rotate images in-place".

Ả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 Simple Image Rotator

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

                        INCREDIBLY simple app to (hopefully) rotate images in-place. Simply right-click on an image, and choose desired orientation in the menu. Doesn't always work but is dumb and (just about) functional.

Just applies CSS `-webkit-transform: rotate(Xdeg)` where x is 0, 90, 180, or 270. Does not attempt to resize or re-centre or any other smarts                    

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

Tên Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
URL Chính Thức https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
Mô tả (extremely) basic extension to rotate images in-place
Kích Thước Tệp 3.82 KB
Số Lần Cài Đặt 3,616
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2022-08-03
Ngày Phát Hành 2020-02-26
Đánh Giá 2.50/5 Tổng số 14 Đánh Giá
Nhà Phát Triển major
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/majorsimon/chrome-simple-image-rotator
URL Trang Trợ Giúp https://github.com/majorsimon/chrome-simple-image-rotator
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Image Rotator",
    "description": "(extremely) basic extension to rotate images in-place",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}