Recap: Smart Split and Summarize with ChatGPT

Summarize the text you are interested in

Recap: Smart Split and Summarize with ChatGPT là gì?

Recap: Smart Split and Summarize with ChatGPT là một tiện ích mở rộng Chrome được phát triển bởi wangyaozhiyz, và tính năng chính của nó là "Summarize the text you are interested in".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Recap: Smart Split and Summarize with ChatGPT

Tải xuống các tệp mở rộng Recap: Smart Split and Summarize with ChatGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Recap - Summarize the text you are interested in

This is an open-source extension to summarize text on webpage with ChatGPT. Recap splits the article into passages, so that you can easily summarize any part of the article.

Source code: https://github.com/yaozhiwang/recap

Features
📖 Auto split article into passages
🗂️ Summarize entire page
📓 Summarize text in a passage
📝 Recap previous content before a passage
🔍 Summarize user selected text
🌈 Support ChatGPT, with custom model
🎨 Support official OpenAI API, with custom API host and API model
🖨️ Custom prompt
🔗 Toggle enable/disable for individual domain or page
⚙️ Support user configuration for different sites
📱 Dark mode
⌨️ Support keyboard shortcuts                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Recap: Smart Split and Summarize with ChatGPT Recap: Smart Split and Summarize with ChatGPT
ID fegolfhddfkibejadoipedlgcapbncml
URL Chính Thức https://chromewebstore.google.com/detail/recap-smart-split-and-sum/fegolfhddfkibejadoipedlgcapbncml
Mô tả Summarize the text you are interested in
Kích Thước Tệp 1.1 MB
Số Lần Cài Đặt 858
Phiên Bản Hiện Tại 1.2.9
Cập Nhật Lần Cuối 2023-11-08
Ngày Phát Hành 2023-04-09
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển wangyaozhiyz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://recapext.xyz
URL Trang Chính Sách Bảo Mật https://www.privacypolicies.com/live/5159e335-3867-4828-ae4c-36afbd916180
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "16": "icon16.plasmo.754a7afc.png",
        "32": "icon32.plasmo.1b596b7f.png",
        "48": "icon48.plasmo.9c45e82d.png",
        "64": "icon64.plasmo.696cf0ec.png",
        "128": "icon128.plasmo.f5004619.png"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icon16.plasmo.754a7afc.png",
            "32": "icon32.plasmo.1b596b7f.png",
            "48": "icon48.plasmo.9c45e82d.png",
            "64": "icon64.plasmo.696cf0ec.png",
            "128": "icon128.plasmo.f5004619.png"
        },
        "default_popup": "popup.html"
    },
    "version": "1.2.9",
    "author": "Yaozhi Wang",
    "name": "Recap: Smart Split and Summarize with ChatGPT",
    "description": "Summarize the text you are interested in",
    "background": {
        "service_worker": "background.b78a8f7f.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "chatgpt-inpage-proxy.984c00fb.js"
            ],
            "css": []
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "panel.2e522df0.js"
            ],
            "css": []
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "passage.5bd22ebb.js"
            ],
            "css": []
        }
    ],
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "assets\/icon.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "panel.a76de3c1.css"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "passage.df7a7ca2.css",
                "panel.a76de3c1.css"
            ]
        }
    ],
    "commands": {
        "toggle-enable-page": {
            "suggested_key": {
                "default": "Ctrl+U",
                "mac": "Command+U"
            },
            "description": "Toggle enable\/disable for current page."
        },
        "toggle-enable-host": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+I"
            },
            "description": "Toggle enable\/disable for current domain."
        },
        "summarize-page": {
            "suggested_key": {
                "default": "Ctrl+K",
                "mac": "Command+K"
            },
            "description": "Summarize the content on current page."
        }
    }
}