Character Count - Arabic Support

Counts characters in selections, skipping Tashkeel for Arabic support.

O que é Character Count - Arabic Support?

Character Count - Arabic Support é uma extensão do Chrome desenvolvida por bro.t.1996, e sua principal característica é "Counts characters in selections, skipping Tashkeel for Arabic support.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Character Count - Arabic Support

Baixe arquivos de extensão Character Count - Arabic Support no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Character Count - Arabic Support Character Count - Arabic Support
ID dninboebgmagofndkilifidnblcdeico
URL Oficial https://chromewebstore.google.com/detail/character-count-arabic-su/dninboebgmagofndkilifidnblcdeico
Descrição Counts characters in selections, skipping Tashkeel for Arabic support.
Tamanho do Arquivo 435 KB
Contagem de Instalações 286
Versão Atual 1.3.3
Última Atualização 2020-09-14
Data de Publicação 2020-01-09
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor bro.t.1996
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/IbraheemTuffaha/character-count
Idiomas Suportados 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"
    }
}