Easy Character Counter

count string

ما هو Easy Character Counter؟

Easy Character Counter هو إضافة Chrome تم تطويرها بواسطة https://macha795.com، والميزة الرئيسية لها هي "count string".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Easy Character Counter

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

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

                        Count the number of characters in the selected text.

This is a Chrome Extension that allows you to count the number of characters in the selected text.
The number of characters is displayed in the upper right corner of the screen.

Please use it to check the number of characters in an article or for proofreading.                    

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

الاسم Easy Character Counter Easy Character Counter
ID copafpdgkjbaoenpeogidcemgmgfflgb
عنوان URL الرسمي https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb
الوصف count string
حجم الملف 46.36 KB
عدد التثبيتات 25
النسخة الحالية 0.0.3
آخر تحديث 2022-06-28
تاريخ النشر 2022-06-11
المطور https://macha795.com
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.3",
    "manifest_version": 3,
    "default_locale": "en",
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png",
        "512": "img\/icon_512.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/contents.css"
            ],
            "js": [
                "plugin\/jquery.min.js",
                "js\/contents.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "web_accessible_resources": [
        {
            "resources": [
                "img\/close_w.svg"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}