YtShadow
Shadowing extensions for youtube
What is YtShadow?
YtShadow is a Chrome extension developed by cashewnuts903, and its main feature is "Shadowing extensions for youtube".
Extension Screenshots
Download YtShadow Extension CRX File
Download YtShadow extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Shadowing is a deceptively simple, little-known language learning technique. You take a native audio recording, with a transcript and you speak along at as close to the same time as you can. That’s it. https://howtogetfluent.com/shadowing-for-language-learning/ This addon makes youtube.com as shadowing platform using video and subtitle. Listen one sentence and type it, and optionally you could speak it loud. https://github.com/cashewnuts/yt-shadow
Extension Basic Information
Name | YtShadow |
ID | jnmgechhkhjiahonlcnjffjpoecoiike |
Official URL | https://chromewebstore.google.com/detail/ytshadow/jnmgechhkhjiahonlcnjffjpoecoiike |
Description | Shadowing extensions for youtube |
File Size | 960 KB |
Installation Count | 23 |
Current Version | 0.2.4 |
Last Updated | 2020-09-16 |
Publish Date | 2020-09-15 |
Rating | 1.00/5 Total 1 Ratings |
Developer | cashewnuts903 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/cashewnuts/yt-shadow |
Help Page URL | https://www.buymeacoffee.com/cashewnuts |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YtShadow", "version": "0.2.4", "description": "Shadowing extensions for youtube", "icons": { "24": "icons\/yt-24.png", "48": "icons\/yt-48.png", "96": "icons\/yt-96.png" }, "background": { "scripts": [ "browser-polyfill.min.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "browser-polyfill.min.js", "yt-shadow.js" ], "css": [ "css\/yt-blueprint.css" ] } ], "browser_action": { "browser_style": true, "default_icon": { "24": "icons\/yt-24.png", "48": "icons\/yt-48.png", "96": "icons\/yt-96.png" }, "default_title": "Yt Shadow", "default_popup": "popup\/popup.html" }, "permissions": [ "*:\/\/video.google.com\/*", "storage", "tabs", "unlimitedStorage" ] } |