Character Count - Arabic Support

Counts characters in selections, skipping Tashkeel for Arabic support.

Was ist Character Count - Arabic Support?

Character Count - Arabic Support ist eine Chrome-Erweiterung, die von bro.t.1996 entwickelt wurde, und ihr Hauptmerkmal ist "Counts characters in selections, skipping Tashkeel for Arabic support.".

Erweiterungsscreenshots

screenshot

Character Count - Arabic Support-Erweiterungs-CRX-Datei herunterladen

Laden Sie Character Count - Arabic Support-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Character Count - Arabic Support Character Count - Arabic Support
ID dninboebgmagofndkilifidnblcdeico
Offizielle URL https://chromewebstore.google.com/detail/character-count-arabic-su/dninboebgmagofndkilifidnblcdeico
Beschreibung Counts characters in selections, skipping Tashkeel for Arabic support.
Dateigröße 435 KB
Installationsanzahl 286
Aktuelle Version 1.3.3
Letztes Update 2020-09-14
Veröffentlichungsdatum 2020-01-09
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler bro.t.1996
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/IbraheemTuffaha/character-count
Unterstützte Sprachen 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"
    }
}