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…
Qu'est-ce que Summariser - ChatGPT Helper extension ?
Summariser - ChatGPT Helper extension est une extension Chrome développée par dmw, et sa fonction principale est "Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Summariser - ChatGPT Helper extension
Téléchargez les fichiers d'extension Summariser - ChatGPT Helper extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Summariser - ChatGPT Helper extension |
ID | ejdaenbfahhbcdolodmkklhihaefkgmn |
URL Officiel | https://chromewebstore.google.com/detail/summariser-chatgpt-helper/ejdaenbfahhbcdolodmkklhihaefkgmn |
Description | Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from… |
Taille du Fichier | 709 KB |
Nombre d'Installations | 130 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2023-02-19 |
Date de Publication | 2023-02-14 |
Développeur | dmw |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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'" } } |