Google Result Counter

Automatically counts your Google search results and displays the number of results in the title of the result.

ما هو Google Result Counter؟

Google Result Counter هو إضافة Chrome تم تطويرها بواسطة Paul Lukic، والميزة الرئيسية لها هي "Automatically counts your Google search results and displays the number of results in the title of the result.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Google Result Counter

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

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

                        Do not forget to enable counter upon installation!

Update 1.0.4
 - Fixed counting header for images.
 - Fixed extension firing on wordpress.                    

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

الاسم Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
الوصف Automatically counts your Google search results and displays the number of results in the title of the result.
حجم الملف 117 KB
عدد التثبيتات 646
النسخة الحالية 1.0.4
آخر تحديث 2023-08-01
تاريخ النشر 2023-07-14
تقييم 4.33/5 مجموع تقييمات 6
المطور Paul Lukic
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/paullukic/google-search-counter
عنوان صفحة المساعدة https://www.linkedin.com/in/paul-lukic/
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Result Counter",
    "version": "1.0.4",
    "description": "Automatically counts your Google search results and displays the number of results in the title of the result.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/google.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}