RespoAI
RespoAI is a browser extension that helps you create thoughtful and effective responses with the click of a button.
RespoAI란 무엇입니까?
RespoAI은(는) contactrespoai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "RespoAI is a browser extension that helps you create thoughtful and effective responses with the click of a button."입니다.
확장 프로그램 스크린샷
RespoAI 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
⚡The #1 Growth Hacking Tool that utilizes a browser extension to help you create thoughtful and effective responses.
✍️With the help of our AI language synthesis tool for Chrome, you can produce attention-grabbing messages that are intriguing and efficient. Our tool will help you have an effect, whether you're interacting with customers, followers, friends, or anyone else!
💡With Respo, responses are no longer a difficult or time-consuming task. Say goodbye to generic messages and hello to more meaningful interactions.
Coming soon:
🔜Gmail
🔜Facebook
🔜Youtube
To make using RespoAI even better, we're always working on updates and improvements. Please contact us at [email protected] if you have any inquiries or suggestions. 확장 프로그램 기본 정보
| 이름 | |
| ID | bedkffdgfejokiohjhkehankmamachma |
| 공식 URL | https://chromewebstore.google.com/detail/respoai/bedkffdgfejokiohjhkehankmamachma |
| 설명 | RespoAI is a browser extension that helps you create thoughtful and effective responses with the click of a button. |
| 파일 크기 | 191 KB |
| 설치 횟수 | 327 |
| 현재 버전 | 1.0.4 |
| 최근 업데이트 | 2023-03-02 |
| 출시 날짜 | 2023-02-03 |
| 평점 | 4.56/5 총 16 개의 평점 |
| 개발자 | contactrespoai |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 지원되는 언어 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "RespoAI",
"description": "RespoAI is a browser extension that helps you create thoughtful and effective responses with the click of a button. ",
"version": "1.0.4",
"manifest_version": 3,
"background": {
"service_worker": "serviceWorker.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"contentScript.js"
]
},
{
"matches": [
"https:\/\/www.linkedin.com\/*"
],
"js": [
"linkedinScript.js"
]
},
{
"matches": [
"https:\/\/www.reddit.com\/*"
],
"js": [
"redditScript.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_title": "RespoAi",
"default_popup": "popup.html",
"default_icon": {
"16": "\/icons\/respo16.png",
"32": "\/icons\/respo32.png",
"48": "\/icons\/respo48.png",
"128": "\/icons\/respo128.png"
}
},
"icons": {
"16": "\/icons\/respo16.png",
"32": "\/icons\/respo32.png",
"48": "\/icons\/respo48.png",
"128": "\/icons\/respo128.png"
}
} | |