Quick Character Count
Count characters in selected text
Quick Character Countคืออะไร?
Quick Character Count เป็นส่วนขยายของ Chrome ที่พัฒนาโดย prestonfrom และคุณลักษณะหลักของมันคือ "Count characters in selected text"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick Character Count
ดาวน์โหลดไฟล์ส่วนขยาย Quick Character Count ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an ultra simple extension to find the character count of selected text. Good for bloggers/editors who are trying to keep titles, etc. under a certain length. Just highlight text and select "Character count" from the context (left-click) menu.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Quick Character Count |
ID | cobjdgciclhjhpheafbpooknokhnkoof |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/quick-character-count/cobjdgciclhjhpheafbpooknokhnkoof |
คำอธิบาย | Count characters in selected text |
ขนาดไฟล์ | 8.13 KB |
จำนวนการติดตั้ง | 41 |
เวอร์ชันปัจจุบัน | 1.5.1 |
อัปเดตครั้งล่าสุด | 2016-02-25 |
วันที่เผยแพร่ | 2016-02-25 |
คะแนน | 2.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | prestonfrom |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/prestonfrom/ |
URL หน้าช่วยเหลือ | https://github.com/prestonfrom/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Character Count", "description": "Count characters in selected text", "version": "1.5.1", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon-bitty.png", "48": "icon.png", "128": "iconbig.png" }, "permissions": [ "contextMenus", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "script.js" ] } ], "background": { "scripts": [ "background.js" ] } } |