Right Click Translate
Right Click to translate selected text into a new Tab using Google Translate
Right Click Translate क्या है?
Right Click Translate ndingar33 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Right Click to translate selected text into a new Tab using Google Translate"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Right Click Translate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This handy extension helps user to translate selected text into a new chrome tab via context menu. Unlike other in-place translation extensions, this extension keeps the original webpage clean and untouched. It also provides ability to let user choose a prefered target language. *1.9.2 fix bug and add create Post for twitter, facebook, reddit
एक्सटेंशन की मूल जानकारी
नाम | Right Click Translate |
ID | piojkjkndneggfaibepkmabjnkjlhlmk |
आधिकारिक URL | https://chromewebstore.google.com/detail/right-click-translate/piojkjkndneggfaibepkmabjnkjlhlmk |
विवरण | Right Click to translate selected text into a new Tab using Google Translate |
फ़ाइल का आकार | 75 KB |
स्थापना संख्या | 102,715 |
वर्तमान संस्करण | 1.9.2 |
अंतिम अपडेट | 2024-01-02 |
प्रकाशन तिथि | 2018-07-04 |
रेटिंग | 4.25/5 कुल 93 रेटिंग्स |
डेवलपर | ndingar33 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://www.termsfeed.com/live/0bc575cf-9744-4219-93c1-62d012278d21 |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Right Click Translate", "description": "Right Click to translate selected text into a new Tab using Google Translate", "version": "1.9.2", "manifest_version": 3, "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "action": { "default_popup": "src\/popup.html" }, "options_ui": { "page": "src\/options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/twitter.com\/*", "*:\/\/*.reddit.com\/*", "*:\/\/*.google.com\/*" ], "js": [ "src\/content.js" ], "css": [ "style.css" ] } ], "permissions": [ "contextMenus", "storage", "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*.facebook.com\/*", "*:\/\/twitter.com\/*", "*:\/\/*.reddit.com\/*" ], "background": { "service_worker": "src\/background.js" } } |