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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}