Character Count - Arabic Support

Counts characters in selections, skipping Tashkeel for Arabic support.

Qu'est-ce que Character Count - Arabic Support ?

Character Count - Arabic Support est une extension Chrome développée par bro.t.1996, et sa fonction principale est "Counts characters in selections, skipping Tashkeel for Arabic support.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Character Count - Arabic Support

Téléchargez les fichiers d'extension Character Count - Arabic Support au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Character Count - Arabic Support Character Count - Arabic Support
ID dninboebgmagofndkilifidnblcdeico
URL Officiel https://chromewebstore.google.com/detail/character-count-arabic-su/dninboebgmagofndkilifidnblcdeico
Description Counts characters in selections, skipping Tashkeel for Arabic support.
Taille du Fichier 435 KB
Nombre d'Installations 286
Version Actuelle 1.3.3
Dernière Mise à Jour 2020-09-14
Date de Publication 2020-01-09
Évaluation 5.00/5 Total 2 Évaluations
Développeur bro.t.1996
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/IbraheemTuffaha/character-count
Langues Prises en Charge 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"
    }
}