Image Rotator for WhatsApp™ Web
An unofficial extension that uses the context menu to rotate images from WhatsApp™ Web.
Image Rotator for WhatsApp™ Web란 무엇입니까?
Image Rotator for WhatsApp™ Web은(는) GalaxyBS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An unofficial extension that uses the context menu to rotate images from WhatsApp™ Web."입니다.
확장 프로그램 스크린샷
Image Rotator for WhatsApp™ Web 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Introducing our useful, unofficial Chrome extension designed specifically for WhatsApp™ Web. Say goodbye to the discomfort of viewing improperly oriented images that often crop up during your online conversations. Once you've installed our extension, adjusting any image from WhatsApp™ Web becomes a breeze. Simply right-click the desired image and select 'Open image in new tab'. Then, another right click reveals the 'Rotate Image' option. With each click on this option, your image will rotate either clockwise or counterclockwise in 90-degree increments. Enhancing the user experience even further, we've integrated keyboard shortcuts in our latest update. For a clockwise rotation, use 'ctrl+shift+right key'. Alternatively, for a counterclockwise adjustment, 'ctrl+shift+left key' is your go-to command. Avoid straining your neck with stubborn, improperly angled pictures in WhatsApp™ Web. Let our extension handle the rotation, providing you with a comfortable viewing experience. To learn more, or to contribute to this ongoing project, visit our GitHub repository: https://github.com/BatelBB/Rotate_Image_Extension Download our extension today - the unofficial, yet extremely efficient solution for image rotation in WhatsApp™ Web. Say goodbye to neck strain and hello to convenience! Note: WhatsApp™ is a trademark of WhatsApp Inc.
확장 프로그램 기본 정보
이름 | Image Rotator for WhatsApp™ Web |
ID | bcgcckcljjhmgfdaoaokoaamjidpjgfh |
공식 URL | https://chromewebstore.google.com/detail/image-rotator-for-whatsap/bcgcckcljjhmgfdaoaokoaamjidpjgfh |
설명 | An unofficial extension that uses the context menu to rotate images from WhatsApp™ Web. |
파일 크기 | 10.98 KB |
설치 횟수 | 1,001 |
현재 버전 | 1.6 |
최근 업데이트 | 2023-12-01 |
출시 날짜 | 2022-04-27 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | GalaxyBS |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/BatelBB/Rotate_Image_Extension |
개인정보 보호 정책 페이지 URL | https://www.privacypolicies.com/live/6b53c58e-1f11-41f6-9c5f-57d73853180a |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Image Rotator for WhatsApp\u2122 Web", "version": "1.6", "manifest_version": 3, "description": "An unofficial extension that uses the context menu to rotate images from WhatsApp\u2122 Web.", "background": { "service_worker": "src\/background.js" }, "permissions": [ "contextMenus", "activeTab" ], "commands": { "rotate_clockwise": { "suggested_key": { "default": "Ctrl+Shift+Right", "mac": "MacCtrl+Shift+Right" }, "description": "Rotate Image Clockwise" }, "rotate_counterclockwise": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "MacCtrl+Shift+Left" }, "description": "Rotate Image Counterclockwise" } }, "content_scripts": [ { "matches": [ "*:\/\/web.whatsapp.com\/*" ], "match_origin_as_fallback": true, "js": [ "src\/contentScript.js" ] } ], "icons": { "16": "icons\/16icon.png", "32": "icons\/32icon.png", "48": "icons\/48icon.png", "128": "icons\/128icon.png" } } |