Easy Character Counter

count string

Easy Character Counterคืออะไร?

Easy Character Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://macha795.com และคุณลักษณะหลักของมันคือ "count string"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Easy Character Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Count the number of characters in the selected text.

This is a Chrome Extension that allows you to count the number of characters in the selected text.
The number of characters is displayed in the upper right corner of the screen.

Please use it to check the number of characters in an article or for proofreading.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Easy Character Counter Easy Character Counter
ID copafpdgkjbaoenpeogidcemgmgfflgb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb
คำอธิบาย count string
ขนาดไฟล์ 46.36 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2022-06-28
วันที่เผยแพร่ 2022-06-11
ผู้พัฒนา https://macha795.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.3",
    "manifest_version": 3,
    "default_locale": "en",
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png",
        "512": "img\/icon_512.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/contents.css"
            ],
            "js": [
                "plugin\/jquery.min.js",
                "js\/contents.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "web_accessible_resources": [
        {
            "resources": [
                "img\/close_w.svg"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}