DoubleTedder
Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.
Vad är DoubleTedder?
DoubleTedder är en Chrome-tillägg utvecklad av hrak24, och dess huvudfunktion är "Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.".
Tilläggsskärmbilder
Ladda ner DoubleTedder-förlängningens CRX-fil
Ladda ner DoubleTedder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Learn whole phrases from TED. - Show subtitle of your language along with English subtitle at once. - Auto-stop at the end of phrases so you can look into the subtitles. - Backward 3s / 1 phrase by button or keyboard to repeat phrases you missed.
Grundläggande Information om Tillägg
Namn | DoubleTedder |
ID | fegapncdamjhcaofcobgedeppgdhpled |
Officiell webbadress | https://chromewebstore.google.com/detail/doubletedder/fegapncdamjhcaofcobgedeppgdhpled |
Beskrivning | Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again. |
Filstorlek | 14.02 KB |
Antal Installationer | 1,256 |
Aktuell Version | 1.0.2 |
Senast Uppdaterad | 2017-07-24 |
Publiceringsdatum | 2017-07-24 |
Betyg | 4.57/5 Totalt 7 Betyg |
Utvecklare | hrak24 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DoubleTedder", "version": "1.0.2", "description": "Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.", "content_scripts": [ { "matches": [ "https:\/\/www.ted.com\/*" ], "js": [ "doubleTedder.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.htm", "default_icon": "icon.png" }, "permissions": [ "tabs", "https:\/\/www.ted.com\/*" ], "icons": { "128": "icon.png" } } |