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…
Was ist Summariser - ChatGPT Helper extension?
Summariser - ChatGPT Helper extension ist eine Chrome-Erweiterung, die von dmw entwickelt wurde, und ihr Hauptmerkmal ist "Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…".
Erweiterungsscreenshots
Summariser - ChatGPT Helper extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Summariser - ChatGPT Helper extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Summariser - ChatGPT Helper extension |
ID | ejdaenbfahhbcdolodmkklhihaefkgmn |
Offizielle URL | https://chromewebstore.google.com/detail/summariser-chatgpt-helper/ejdaenbfahhbcdolodmkklhihaefkgmn |
Beschreibung | Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from… |
Dateigröße | 709 KB |
Installationsanzahl | 130 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2023-02-19 |
Veröffentlichungsdatum | 2023-02-14 |
Entwickler | dmw |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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'" } } |