Simple Image Rotator

(extremely) basic extension to rotate images in-place

Simple Image Rotator란 무엇입니까?

Simple Image Rotator은(는) major에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "(extremely) basic extension to rotate images in-place"입니다.

확장 프로그램 스크린샷

screenshot

Simple Image Rotator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}