Easily grab (punctuated) text transcripts from Youtube vids. Quickly get a gist of a video and ensure you capture everything you learn in Roam Research/PKMs
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "YText",
"description": "Easily grab text transcripts from Youtube vids (and add them to Roam)",
"version": "0.0.1",
"homepage_url": "https://github.com/maskys/ytext",
"manifest_version": 2,
"minimum_chrome_version": "74",
"applications": {
"gecko": {
"id": "ytext@maskys.github.io",
"strict_min_version": "67.0"
}
},
"icons": {
"128": "icon.png"
},
"permissions": [
"storage",
"tabs",
"activeTab",
"clipboardWrite",
"unlimitedStorage",
"https://noembed.com/*",
"https://us-central1-ryuga-298015.cloudfunctions.net/*"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": [
"browser-polyfill.min.js",
"background.js"
]
}
}