Tweeter
Tweeting made easy.
What is Tweeter?
Tweeter is a Chrome extension developed by Zeeg, and its main feature is "Tweeting made easy.".
Extension Screenshots
Download Tweeter Extension CRX File
Download Tweeter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Elevate your Twitter game with the Tweeter! With just a few clicks, generate personalized and engaging tweets, threads and direct messages based on your chosen tone and topic. 1️⃣ Install the Tweeter extension. 2️⃣ Open twitter.com or tweetdeck.twitter.com 3️⃣ Click on the Tweeter extension logo ✅ Create professional and engaging content for your followers. Try it out now and stand out on Twitter!
Extension Basic Information
Name | Tweeter |
ID | piecblhgbbgfcnpkngkjdgemalmgallo |
Official URL | https://chromewebstore.google.com/detail/tweeter/piecblhgbbgfcnpkngkjdgemalmgallo |
Description | Tweeting made easy. |
File Size | 72.25 KB |
Installation Count | 342 |
Current Version | 0.40 |
Last Updated | 2023-03-30 |
Publish Date | 2023-02-07 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Zeeg |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tweeter", "description": "Tweeting made easy.", "version": "0.40", "action": { "default_icon": { "16": "assets\/icons\/icon-16.png", "32": "assets\/icons\/icon-32.png", "48": "assets\/icons\/icon-48.png", "128": "assets\/icons\/icon-128.png" }, "default_title": "Tweeter" }, "icons": { "16": "assets\/icons\/icon-16.png", "32": "assets\/icons\/icon-32.png", "48": "assets\/icons\/icon-48.png", "128": "assets\/icons\/icon-128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "permissions": [ "storage" ], "host_permissions": [ "*:\/\/extensions.zeeg.me\/*" ], "web_accessible_resources": [ { "resources": [ "index.html", "assets\/icons\/icon-32.png", "icon-32.png" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ] } ] } |