AI Tweet Generator Bot
Generates tweets based on keywords
¿Qué es AI Tweet Generator Bot?
AI Tweet Generator Bot es una extensión de Chrome desarrollada por sales.tabsgi, y su función principal es "Generates tweets based on keywords".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión AI Tweet Generator Bot
Descarga archivos de extensión AI Tweet Generator Bot en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Introducing the AI Tweet Generator Bot, your ultimate tool for crafting captivating and engaging tweets! Powered by cutting-edge artificial intelligence technology, this bot is designed to assist users in generating high-quality tweets effortlessly. With its vast database of trending topics, popular hashtags, and linguistic patterns, the AI Tweet Generator Bot ensures your tweets are always on point and tailored to your audience. Whether you're a social media influencer, marketer, or simply looking to enhance your online presence, this bot will provide you with clever suggestions, concise wording, and impactful messages that are sure to captivate your followers. Say goodbye to writer's block and hello to tweet success with the AI Tweet Generator Bot!
Información Básica de la Extensión
Nombre | AI Tweet Generator Bot |
ID | dbjencablhlogabpadhjkoakilekdbfb |
URL Oficial | https://chromewebstore.google.com/detail/ai-tweet-generator-bot/dbjencablhlogabpadhjkoakilekdbfb |
Descripción | Generates tweets based on keywords |
Tamaño del Archivo | 50.67 MB |
Cantidad de Instalaciones | 13 |
Versión Actual | 1.0 |
Última Actualización | 2023-06-16 |
Fecha de Publicación | 2023-06-16 |
Calificación | 3.00/5 Total de 2 Calificaciones |
Desarrollador | sales.tabsgi |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://twitter.com/ |
URL de la Página de Política de Privacidad | http://www.tabsgi.com/terms/privacypolicy.html |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AI Tweet Generator Bot", "version": "1.0", "description": "Generates tweets based on keywords", "permissions": [ "scripting", "activeTab" ], "icons": { "16": ".\/images\/16.png", "48": ".\/images\/48.png", "128": ".\/images\/128.png" }, "host_permissions": [ "https:\/\/api.openai.com\/*", "https:\/\/twitter.com\/*" ], "action": { "default_popup": ".\/popup\/popup.html", "default_title": "Generate Tweet", "default_icon": { "16": ".\/images\/16.png", "48": ".\/images\/48.png" } }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "content.js" ], "matches": [ "https:\/\/*\/*" ] } ], "commands": { "generate_tweet": { "suggested_key": { "default": "Ctrl+Shift+F" }, "description": "Generate Tweet" } } } |