Ask The Video

AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!

Ask The Video란 무엇입니까?

Ask The Video은(는) https://askthe.video에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Ask The Video 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        #ChatGPT #No_API_KEY_Needed

Ask The Video is a powerful and user-friendly extension designed to enhance your YouTube experience by providing concise summaries of videos, allowing you to quickly grasp the key takeaways and main points without watching the entire content.

Key Features:

1.  News Summary: Get concise breakdowns of news videos, helping you stay informed without watching lengthy content.
    
2.  Question & Answer: Enter your query, and the extension finds the relevant information within the video, saving time.
        
3.  Write tweet: Automatically generate and share engaging tweets based on the video's highlights.

Change logs:

V1.0.16: 4 May, 2023

- Support new Youtube UI                    

확장 프로그램 기본 정보

이름 Ask The Video Ask The Video
ID abedhpcjdaheeedikdakfmjapgoohfgc
공식 URL https://chromewebstore.google.com/detail/ask-the-video/abedhpcjdaheeedikdakfmjapgoohfgc
설명 AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!
파일 크기 500 KB
설치 횟수 67
현재 버전 1.0.17
최근 업데이트 2023-07-05
출시 날짜 2023-04-05
평점 4.00/5 총 4 개의 평점
개발자 https://askthe.video
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://askthe.video
도움말 페이지 URL https://askthe.video
개인정보 보호 정책 페이지 URL https://aiocean.io/pages/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ask The Video",
    "description": "AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!",
    "version": "1.0.17",
    "author": "[email protected]",
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.content.ts.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "assets\/content.css"
            ]
        },
        {
            "js": [
                "assets\/content-script-loader.content-chatgpt.ts.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "assets\/content-chatgpt.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/askthevideo.web.app\/*"
        ]
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "assets\/content.ts.js"
            ],
            "use_dynamic_url": true
        },
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "assets\/content-chatgpt.ts.js"
            ],
            "use_dynamic_url": true
        }
    ]
}