TwitterGPT - Respond to tweets with ChatGPT
With this extensions you can get tweets drafted for you by AI
什么是TwitterGPT - Respond to tweets with ChatGPT?
TwitterGPT - Respond to tweets with ChatGPT是由Rik Van Kerckhoven开发的Chrome扩展程序,该扩展的主要功能是“With this extensions you can get tweets drafted for you by AI”。
扩展截图
下载TwitterGPT - Respond to tweets with ChatGPT扩展crx文件
下载TwitterGPT - Respond to tweets with ChatGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use the engine of ChatGPT to reply to tweets. Chose your writing style and respond. This chrome extension is useful for anyone trying to grow fast on twitter! 扩展基本信息
| 名称 | |
| ID | nafdjcnfmdcdnebjhehhohfaaffdlkon |
| 官方URL | https://chromewebstore.google.com/detail/twittergpt-respond-to-twe/nafdjcnfmdcdnebjhehhohfaaffdlkon |
| 简介 | With this extensions you can get tweets drafted for you by AI |
| 文件大小 | 41.24 KB |
| 安装次数 | 1,275 |
| 当前版本 | 1.3 |
| 更新时间 | 2023-03-22 |
| 上架时间 | 2022-12-19 |
| 评分 | 3.40/5 共5次评分 |
| 开发者 | Rik Van Kerckhoven |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "TwitterGPT - Respond to tweets with ChatGPT",
"description": "With this extensions you can get tweets drafted for you by AI",
"version": "1.3",
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"scripting",
"tabs",
"https:\/\/"
],
"host_permissions": [
"https:\/\/twitter.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"popup.js"
]
}
]
} | |