Image Rotate Context
Allows you to rotate an image with the right click context menu
Image Rotate Context क्या है?
Image Rotate Context robert द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to rotate an image with the right click context menu"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Image Rotate Context एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds a "Rotate" menu option when right clicking images allowing you to rotate Right or Left
एक्सटेंशन की मूल जानकारी
नाम | Image Rotate Context |
ID | mbfblhpconbgpgmphhlonlcbnmebdeme |
आधिकारिक URL | https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme |
विवरण | Allows you to rotate an image with the right click context menu |
फ़ाइल का आकार | 3.91 KB |
स्थापना संख्या | 20,000 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2018-12-01 |
प्रकाशन तिथि | 2018-11-27 |
रेटिंग | 3.03/5 कुल 38 रेटिंग्स |
डेवलपर | robert |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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 } ] } |