Character Count - Arabic Support

Counts characters in selections, skipping Tashkeel for Arabic support.

Character Count - Arabic Support là gì?

Character Count - Arabic Support là một tiện ích mở rộng Chrome được phát triển bởi bro.t.1996, và tính năng chính của nó là "Counts characters in selections, skipping Tashkeel for Arabic support.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Character Count - Arabic Support

Tải xuống các tệp mở rộng Character Count - Arabic Support dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Character Count - Arabic Support Character Count - Arabic Support
ID dninboebgmagofndkilifidnblcdeico
URL Chính Thức https://chromewebstore.google.com/detail/character-count-arabic-su/dninboebgmagofndkilifidnblcdeico
Mô tả Counts characters in selections, skipping Tashkeel for Arabic support.
Kích Thước Tệp 435 KB
Số Lần Cài Đặt 286
Phiên Bản Hiện Tại 1.3.3
Cập Nhật Lần Cuối 2020-09-14
Ngày Phát Hành 2020-01-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển bro.t.1996
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/IbraheemTuffaha/character-count
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}