Simple Image Rotator

(extremely) basic extension to rotate images in-place

Simple Image Rotatorคืออะไร?

Simple Image Rotator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย major และคุณลักษณะหลักของมันคือ "(extremely) basic extension to rotate images in-place"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Image Rotator

ดาวน์โหลดไฟล์ส่วนขยาย Simple Image Rotator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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                    

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

ชื่อ Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
คำอธิบาย (extremely) basic extension to rotate images in-place
ขนาดไฟล์ 3.82 KB
จำนวนการติดตั้ง 3,616
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2022-08-03
วันที่เผยแพร่ 2020-02-26
คะแนน 2.50/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา major
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/majorsimon/chrome-simple-image-rotator
URL หน้าช่วยเหลือ https://github.com/majorsimon/chrome-simple-image-rotator
ภาษาที่รองรับ 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"
    ]
}