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 là gì?

280 Twitter Counter là một tiện ích mở rộng Chrome được phát triển bởi Alexander Ein, và tính năng chính của nó là "Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng 280 Twitter Counter

Tải xuống các tệp mở rộng 280 Twitter Counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên 280 Twitter Counter 280 Twitter Counter
ID ieemcojejhalpakennbgfjeinfakibck
URL Chính Thức https://chromewebstore.google.com/detail/280-twitter-counter/ieemcojejhalpakennbgfjeinfakibck
Mô tả Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.
Kích Thước Tệp 34.85 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 3.0.1
Cập Nhật Lần Cuối 2019-10-04
Ngày Phát Hành 2019-10-04
Nhà Phát Triển Alexander Ein
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/anein/twitter-count-characters
URL Trang Trợ Giúp https://github.com/anein/twitter-count-characters/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}