Simple Image Rotator

(extremely) basic extension to rotate images in-place

Simple Image Rotator क्या है?

Simple Image Rotator major द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "(extremely) basic extension to rotate images in-place"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Simple Image Rotator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}