Talk Web - Talk to any website

Talk Web let's you talk to and ask questions from any website. Quickly get important facts, summarize news, long documents etc

Talk Web - Talk to any website란 무엇입니까?

Talk Web - Talk to any website은(는) Talk Web에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Talk Web let's you talk to and ask questions from any website. Quickly get important facts, summarize news, long documents etc"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Talk Web - Talk to any website 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Talk to any webpage and get the summary and key takeaways. 

💡 Saves time & gets the key points without the hassle! Go through more stuff in less about of time. 

Very helpful for researchers, students, marketers, content creators and software engineers who have to go through tons of reading material everyday. 

🌟 Use Cases
• Talk to any website based on the content. Get valuable insights from any website instantly
• Summarize large content in any way you want
• Get valuable insights from blog posts. Like finding out which stocks are performing better from a given article
• Get valuable insights from any research journal. Ask specific content related questions as well
• Go through the morning news faster. Read more in less time                    

확장 프로그램 기본 정보

이름 Talk Web - Talk to any website Talk Web - Talk to any website
ID djmgjallbhaahlicplejdbpnpiepjmoe
공식 URL https://chromewebstore.google.com/detail/talk-web-talk-to-any-webs/djmgjallbhaahlicplejdbpnpiepjmoe
설명 Talk Web let's you talk to and ask questions from any website. Quickly get important facts, summarize news, long documents etc
파일 크기 1.14 MB
설치 횟수 2,672
현재 버전 1.3.0
최근 업데이트 2023-08-14
출시 날짜 2023-06-01
평점 3.80/5 총 10 개의 평점
개발자 Talk Web
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Talk Web - Talk to any website",
    "description": "Talk Web let's you talk to and ask questions from  any website. Quickly get important facts, summarize news, long documents etc",
    "version": "1.3.0",
    "action": {
        "default_title": "Talk Web",
        "default_icon": {
            "16": "48.png",
            "48": "48.png",
            "128": "128.png"
        }
    },
    "icons": {
        "16": "48.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "iframe\/iframe.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}