280 Twitter Counter
Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.
What is 280 Twitter Counter?
280 Twitter Counter is a Chrome extension developed by Alexander Ein, and its main feature is "Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.".
Extension Screenshots
Download 280 Twitter Counter Extension CRX File
Download 280 Twitter Counter 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
This extension adds the character counter into your tweet form, warns you about the 140 character limit and provides the opportunity to show or hide the circle. 280 Twitter Counter works well with the latest version of Twitter. -- ✔️ Tweetdeck ✔️ Web version
Extension Basic Information
Name | 280 Twitter Counter |
ID | ieemcojejhalpakennbgfjeinfakibck |
Official URL | https://chromewebstore.google.com/detail/280-twitter-counter/ieemcojejhalpakennbgfjeinfakibck |
Description | Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle. |
File Size | 34.85 KB |
Installation Count | 43 |
Current Version | 3.0.1 |
Last Updated | 2019-10-04 |
Publish Date | 2019-10-04 |
Developer | Alexander Ein |
Payment Type | free |
Extension Website | https://github.com/anein/twitter-count-characters |
Help Page URL | https://github.com/anein/twitter-count-characters/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_ext_name__", "short_name": "__MSG_ext_short_name__", "version": "3.0.1", "description": "__MSG_ext_description__", "homepage_url": "https:\/\/github.com\/anein\/twitter-count-characters", "author": "__MSG_ext_author__", "manifest_version": 2, "default_locale": "en", "icons": { "16": "img\/favicon-16x16.png", "48": "img\/favicon-48x48.png", "128": "img\/favicon-128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/tweetdeck.twitter.com\/*" ], "js": [ "js\/tweetdeck.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" }, { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/web.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "js\/scripts\/web.js" ], "browser_action": { "default_title": "__MSG_ext_name__", "default_popup": "html\/popup.html" }, "permissions": [ "storage", "tabs" ] } |