Copy for Chat GPT
This extension allows you to copy chat GPT responses with a click of a button or CMD+K and runs it through plagiarism detectors
什么是Copy for Chat GPT?
Copy for Chat GPT是由https://sethusenthil.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to copy chat GPT responses with a click of a button or CMD+K and runs it through plagiarism detectors”。
扩展截图
下载Copy for Chat GPT扩展crx文件
下载Copy for Chat GPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
📋 Simple Buttons: Copy ChatGPT responses by just clicking on the "Copy" button. It's as easy as it gets! ⌨️ Keyboard Shortcuts: Use CMD+K on Mac or CTRL+K to copy ChatGPT responses 🚨 Automatically runs copied text through plagiarism detectors such as GPTZero to check if the generated text gets flagged and warns you about it! 🐙 100% Open Source! The source code for CopyGPT is free and available on GitHub ✨ Get CopyGPT (Copy for ChatGPT) today to elevate your ChatGPT experience! ✨ 🐛 If you have any issues please report them at: https://copygpt.sethusenthil.com/issues 🐛 Reporting there will help us get the information we need in order to fix the issue or bug! Thank you! CopyGPT might break when ChatGPT updates their web application, I will try my best to keep it up to date but there might be a day or two when CopyGPT might not function as its supposed to. But I can assure you I will be working on a fix!
扩展基本信息
名称 | Copy for Chat GPT |
ID | mloblghgjiagjdffmgobhbgmplhongpm |
官方URL | https://chromewebstore.google.com/detail/copy-for-chat-gpt/mloblghgjiagjdffmgobhbgmplhongpm |
简介 | This extension allows you to copy chat GPT responses with a click of a button or CMD+K and runs it through plagiarism detectors |
文件大小 | 17.64 KB |
安装次数 | 29,045 |
当前版本 | 0.3.11 |
更新时间 | 2023-08-01 |
上架时间 | 2022-12-23 |
评分 | 3.29/5 共48次评分 |
开发者 | https://sethusenthil.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://copygpt.sethusenthil.com/ |
帮助页面URL | https://github.com/SethuSenthil/Copy-for-ChatGPT |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "author": "Sethu Senthil", "name": "Copy for Chat GPT", "icons": { "16": "media\/16.png", "19": "media\/19.png", "38": "media\/38.png", "48": "media\/48.png", "128": "media\/128.png" }, "description": "This extension allows you to copy chat GPT responses with a click of a button or CMD+K and runs it through plagiarism detectors", "version": "0.3.11", "host_permissions": [ "https:\/\/writer.com\/*" ], "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "init.js" ], "css": [ "styles.css" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |