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 |
| 官方網址 | 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"
]
}
]
} | |