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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexander Ein และคุณลักษณะหลักของมันคือ "Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 280 Twitter Counter

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}