Summariser - ChatGPT Helper extension

Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…

什么是Summariser - ChatGPT Helper extension?

Summariser - ChatGPT Helper extension是由dmw开发的Chrome扩展程序,该扩展的主要功能是“Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…”。

扩展截图

screenshot

下载Summariser - ChatGPT Helper extension扩展crx文件

下载Summariser - ChatGPT Helper extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Summariser is a nifty little ChatGPT helper that will make your life 10x easier. 

It lets you quickly collect text snippets from any webpage and use them as many times as you like. 

Along with a growing set of tools ie  built-in prompts - to turn your snippets into social media posts, twitter threads, blog articles, ideation, explanations and much more.                    

扩展基本信息

名称 Summariser - ChatGPT Helper extension Summariser - ChatGPT Helper extension
ID ejdaenbfahhbcdolodmkklhihaefkgmn
官方URL https://chromewebstore.google.com/detail/summariser-chatgpt-helper/ejdaenbfahhbcdolodmkklhihaefkgmn
简介 Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…
文件大小 709 KB
安装次数 130
当前版本 1.1.0
更新时间 2023-02-19
上架时间 2023-02-14
开发者 dmw
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Summariser - ChatGPT Helper extension",
    "version": "1.1.0",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ],
    "action": {
        "default_title": ""
    },
    "icons": {
        "128": "assets\/logo 128.png",
        "512": "assets\/logo 512.png"
    },
    "background": {
        "service_worker": "build\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat\/*"
            ],
            "css": [
                "build\/content-style-chatgpt.css",
                "build\/content-style-chatgpt-overrides.css"
            ],
            "js": [
                "build\/content-script-chatgpt.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
    }
}