Youtube Scripter
Ask AI anything regarding a YouTube video, translate, summarize, ..., export script with YouTubeScripter.
什么是Youtube Scripter?
Youtube Scripter是由ebatchas开发的Chrome扩展程序,该扩展的主要功能是“Ask AI anything regarding a YouTube video, translate, summarize, ..., export script with YouTubeScripter.”。
扩展截图
下载Youtube Scripter扩展crx文件
下载Youtube Scripter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Meet YouTubeScripter, your AI companion for YouTube! 🚀
📽️ Real-Time Conversations: Chat with any video in real-time, in or out of context. Enjoy a convenient conversation history. 🗨️
📋 For YouTubers: Get detailed info like scripts, descriptions, and tags. Everything you need in one place! 📺
⏭️ Sectional Chats: Have a lengthy podcast? No problem! Chat with specific sections and easily switch between them. 🎙️
Ready to elevate your YouTube experience? Try YouTubeScripter now! 🌟📲 扩展基本信息
| 名称 | |
| ID | nkenhionmhdegjkgghhigaifcmpioeff |
| 官方URL | https://chromewebstore.google.com/detail/youtube-scripter/nkenhionmhdegjkgghhigaifcmpioeff |
| 简介 | Ask AI anything regarding a YouTube video, translate, summarize, ..., export script with YouTubeScripter. |
| 文件大小 | 106 KB |
| 安装次数 | 186 |
| 当前版本 | 2.0.4 |
| 更新时间 | 2023-12-15 |
| 上架时间 | 2023-07-01 |
| 评分 | 4.00/5 共4次评分 |
| 开发者 | ebatchas |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://ebatchas.com/ |
| 隐私政策页面URL | https://github.com/raphaexl/ebatchas-privacy/blob/main/privacy-policy.md |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Scripter",
"version": "2.0.4",
"description": "Ask AI anything regarding a YouTube video, translate, summarize, ..., export script with YouTubeScripter.",
"permissions": [
"downloads",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
".\/js\/content.js"
]
}
],
"background": {
"service_worker": ".\/js\/background.js"
},
"action": {
"default_title": "Youtube Scripter",
"default_popup": ".\/html\/popup.html",
"default_icon": {
"16": "images\/icon-16.png",
"24": "images\/icon-24.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"96": "images\/icon-96.png",
"128": "images\/icon-128.png"
}
},
"icons": {
"16": "images\/icon-16.png",
"24": "images\/icon-24.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"96": "images\/icon-96.png",
"128": "images\/icon-128.png"
},
"manifest_version": 3
} | |