280 Twitter Counter
Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.
280 Twitter Counterとは何ですか?
280 Twitter CounterはAlexander Einによって開発されたChromeの拡張機能で、その主な機能は「Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.」です。
拡張機能のスクリーンショット
280 Twitter Counter拡張機能のCRXファイルをダウンロード
280 Twitter Counter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | 280 Twitter Counter |
ID | ieemcojejhalpakennbgfjeinfakibck |
公式URL | https://chromewebstore.google.com/detail/280-twitter-counter/ieemcojejhalpakennbgfjeinfakibck |
説明 | Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle. |
ファイルサイズ | 34.85 KB |
インストール数 | 43 |
現在のバージョン | 3.0.1 |
最終更新日 | 2019-10-04 |
公開日 | 2019-10-04 |
開発者 | Alexander Ein |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/anein/twitter-count-characters |
ヘルプページのURL | https://github.com/anein/twitter-count-characters/issues |
対応言語 | 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" ] } |