Progressive Immersion
A browser extension that progressively immerses you in a language.
Progressive Immersion क्या है?
Progressive Immersion Aidan Welch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension that progressively immerses you in a language."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Progressive Immersion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A browser extension that progressively immerses you in a language. Using Google Translate we translate frequent words in sites you read to a language you want to learn! This will not teach you a language but instead hopefully expand your vocab. This extension is open-source and we do not track your data. BUT, it does send words selected to be translated directly to Google Translate, which can be a privacy risk. You should add websites you want the extension not to analyze to the exclusion list, or turn the extension off before visiting them. Be warned though that the extension starts to analyze a page when it starts to load so you should turn it off or add a page to the exclusion list before loading it. View the source code or contribute here: https://github.com/AidanWelch/ProgressiveImmersion And, sponsor the project here: https://github.com/sponsors/AidanWelch
एक्सटेंशन की मूल जानकारी
नाम | Progressive Immersion |
ID | glhikloekamfeiakikebcndppkgldloj |
आधिकारिक URL | https://chromewebstore.google.com/detail/progressive-immersion/glhikloekamfeiakikebcndppkgldloj |
विवरण | A browser extension that progressively immerses you in a language. |
फ़ाइल का आकार | 69.44 KB |
स्थापना संख्या | 24 |
वर्तमान संस्करण | 0.8.9 |
अंतिम अपडेट | 2024-01-05 |
प्रकाशन तिथि | 2023-06-10 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | Aidan Welch |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/AidanWelch/ProgressiveImmersion |
सहायता पृष्ठ URL | https://github.com/AidanWelch/ProgressiveImmersion/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Progressive Immersion", "description": "A browser extension that progressively immerses you in a language.", "icons": { "48": "images\/logo-48.png", "96": "images\/logo-96.png" }, "version": "0.8.9", "permissions": [ "webRequest", "alarms", "storage", "unlimitedStorage", "downloads" ], "host_permissions": [ "https:\/\/translate.google.com\/*" ], "action": { "default_icon": "images\/logo-32.png", "default_title": "Progressive Immersion", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_scripts\/main.js" ] } ], "background": { "service_worker": "background_scripts\/main.js", "mode": "module" }, "options_ui": { "page": "options\/index.html", "browser_style": true } } |