GPTweet: Twitter replies with ChatGPT

Are you networking on Twitter? Let ChatGPT draft your Tweet replies for you!

GPTweet: Twitter replies with ChatGPT란 무엇입니까?

GPTweet: Twitter replies with ChatGPT은(는) Mowgli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Are you networking on Twitter? Let ChatGPT draft your Tweet replies for you!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GPTweet: Twitter replies with ChatGPT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ChatGPT is ready to be your personal Tweet Assistant :)

100% free, no signups required — just use your own OpenAI API key.

★  What is GPTweet?
GPTweet is a free Chrome extension that lets you use ChatGPT to reply to tweets. 🤖🪄

★  Features
➤ Use the powerful ChatGPT AI to create quality replies to Tweets
➤ NO signups or logins required
➤ Use your own OpenAI API Key — your key is stored locally on your machine and NEVER on any server

VERSION 2 UPDATE: The AI buttons have moved! You will find them in the reply writing area now.

★  Disclaimers and Limitations
Version 1 of GPTweet can run on any Tweet, but does not yet cover all Twitter features:
➤ GPTweet responds to a single Tweet and does not yet understand threads or conversations
➤ GPTweet cannot understand media context, such as images and videos
➤ GPTweet relies on Twitter's DOM structure. As Twitter is rapidly changing (especially now), the extension may not work properly in the future
➤ **Disclaimer:** GPTweet is intended to brainstorm first drafts of Twitter replies and should be proofread and edited by the user.                    

확장 프로그램 기본 정보

이름 GPTweet: Twitter replies with ChatGPT GPTweet: Twitter replies with ChatGPT
ID dhjbdoaddaillhhngldldpklbogfblif
공식 URL https://chromewebstore.google.com/detail/gptweet-twitter-replies-w/dhjbdoaddaillhhngldldpklbogfblif
설명 Are you networking on Twitter? Let ChatGPT draft your Tweet replies for you!
파일 크기 718 KB
설치 횟수 468
현재 버전 0.0.0.2
최근 업데이트 2023-03-18
출시 날짜 2023-03-12
평점 4.50/5 총 2 개의 평점
개발자 Mowgli
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://amethyst-watcher-db6.notion.site/GPTweet-7bb9e71605834a38b662be1632894ac7
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1z2OWuXtpqS1i9uZa4VX6yLgt3-Avi3TV/edit?usp=sharing&ouid=113104602708557729852&rtpof=true&sd=true
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPTweet: Twitter replies with ChatGPT",
    "version": "0.0.0.2",
    "description": "Are you networking on Twitter? Let ChatGPT draft your Tweet replies for you!",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "32": "assets\/icons\/icon32.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "action": {
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "twitter_toolbar_version.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*\/status\/*",
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}