Character Count - Arabic Support

Counts characters in selections, skipping Tashkeel for Arabic support.

Character Count - Arabic Supportคืออะไร?

Character Count - Arabic Support เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bro.t.1996 และคุณลักษณะหลักของมันคือ "Counts characters in selections, skipping Tashkeel for Arabic support."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Character Count - Arabic Support

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

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

                        A browser extension for viewing the number of characters in text selections. When activated, the count appears in the top-right corner of the browser window.
This version supports Arabic by skipping diacritics when counting character.
Original Developer: https://github.com/jbrudvik/character-count                    

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

ชื่อ Character Count - Arabic Support Character Count - Arabic Support
ID dninboebgmagofndkilifidnblcdeico
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/character-count-arabic-su/dninboebgmagofndkilifidnblcdeico
คำอธิบาย Counts characters in selections, skipping Tashkeel for Arabic support.
ขนาดไฟล์ 435 KB
จำนวนการติดตั้ง 286
เวอร์ชันปัจจุบัน 1.3.3
อัปเดตครั้งล่าสุด 2020-09-14
วันที่เผยแพร่ 2020-01-09
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา bro.t.1996
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/IbraheemTuffaha/character-count
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Character Count - Arabic Support",
    "short_name": "Char Count",
    "description": "Counts characters in selections, skipping Tashkeel for Arabic support.",
    "version": "1.3.3",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "bower_components\/browser-extension-toggle-button\/browser-extension-toggle-button.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Show number of characters selected",
        "default_icon": {
            "19": "icons\/inactive-19.png",
            "38": "icons\/inactive-38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/underscore\/underscore-min.js",
                "bower_components\/pluralize\/pluralize.js",
                "bower_components\/string-stats\/string-stats.js",
                "bower_components\/selection-stats\/selection-stats.js",
                "bower_components\/equatable-selection\/equatable-selection.js",
                "bower_components\/selection-listener\/selection-listener.js",
                "bower_components\/periphery-label\/periphery-label.js",
                "bower_components\/selection-counter\/selection-counter.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/active-16.png",
        "48": "icons\/active-48.png",
        "128": "icons\/active-128.png"
    }
}