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.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載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 280 Twitter Counter
ID ieemcojejhalpakennbgfjeinfakibck
官方網址 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"
    ]
}