Quick Character Count

Count characters in selected text

ما هو Quick Character Count؟

Quick Character Count هو إضافة Chrome تم تطويرها بواسطة prestonfrom، والميزة الرئيسية لها هي "Count characters in selected text".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Quick Character Count

قم بتنزيل ملفات الامتداد Quick Character Count بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This is an ultra simple extension to find the character count of selected text. Good for bloggers/editors who are trying to keep titles, etc. under a certain length. Just highlight text and select "Character count" from the context (left-click) menu.                    

معلومات أساسية عن التمديد

الاسم Quick Character Count Quick Character Count
ID cobjdgciclhjhpheafbpooknokhnkoof
عنوان URL الرسمي https://chromewebstore.google.com/detail/quick-character-count/cobjdgciclhjhpheafbpooknokhnkoof
الوصف Count characters in selected text
حجم الملف 8.13 KB
عدد التثبيتات 41
النسخة الحالية 1.5.1
آخر تحديث 2016-02-25
تاريخ النشر 2016-02-25
تقييم 2.00/5 مجموع تقييمات 2
المطور prestonfrom
نوع الدفع free
موقع الإضافة https://github.com/prestonfrom/
عنوان صفحة المساعدة https://github.com/prestonfrom/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Character Count",
    "description": "Count characters in selected text",
    "version": "1.5.1",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon-bitty.png",
        "48": "icon.png",
        "128": "iconbig.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}