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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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