Image Rotate Context
Allows you to rotate an image with the right click context menu
What is Image Rotate Context?
Image Rotate Context is a Chrome extension developed by robert, and its main feature is "Allows you to rotate an image with the right click context menu".
Extension Screenshots
Download Image Rotate Context Extension CRX File
Download Image Rotate Context extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Adds a "Rotate" menu option when right clicking images allowing you to rotate Right or Left
Extension Basic Information
Name | Image Rotate Context |
ID | mbfblhpconbgpgmphhlonlcbnmebdeme |
Official URL | https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme |
Description | Allows you to rotate an image with the right click context menu |
File Size | 3.91 KB |
Installation Count | 20,000 |
Current Version | 1.0.0 |
Last Updated | 2018-12-01 |
Publish Date | 2018-11-27 |
Rating | 3.03/5 Total 38 Ratings |
Developer | robert |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Image Rotate Context", "manifest_version": 2, "version": "1.0.0", "description": "Allows you to rotate an image with the right click context menu", "permissions": [ "activeTab", "contextMenus" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "inpage.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true } ] } |