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文件

下載Talk Web - Talk to any website擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}