Translate Scanner
This extension is made by Salure for AFAS translate purposes
Translate Scanner क्या है?
Translate Scanner Salure ICT द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension is made by Salure for AFAS translate purposes"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Translate Scanner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The extension aims to simplify the translation process and improve its efficiency by seamlessly fetching text from the active tab's DOM, parsing it, and storing the translated text for later use. Through the utilization of activeTab, tabs, storage, and host permissions, your extension can access the necessary information from websites and present it in a user-friendly format, thus providing a smoother translation experience. Ultimately, the purpose of your extension is to enhance the translation process for users, enabling them to perform translations with ease and convenience.
एक्सटेंशन की मूल जानकारी
नाम | Translate Scanner |
ID | jpacphhdikilnebipcihgigdcoagcpei |
आधिकारिक URL | https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei |
विवरण | This extension is made by Salure for AFAS translate purposes |
फ़ाइल का आकार | 461 KB |
स्थापना संख्या | 37 |
वर्तमान संस्करण | 2.1.2 |
अंतिम अपडेट | 2023-07-18 |
प्रकाशन तिथि | 2023-03-19 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Salure ICT |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Translate Scanner", "description": "This extension is made by Salure for AFAS translate purposes", "version": "2.1.2", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_end", "js": [ "content.js" ] } ], "background": { "service_worker": "service_worker.js" }, "permissions": [ "activeTab", "tabs", "storage" ], "action": { "default_icon": "icon.png", "default_popup": "index.html", "default_title": "Salure Translate" }, "content_security_policy": [] } |