Website Tagger

Tag websites on various conditions for easy recognition

ما هو Website Tagger؟

Website Tagger هو إضافة Chrome تم تطويرها بواسطة Kushagra Gour، والميزة الرئيسية لها هي "Tag websites on various conditions for easy recognition".

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

screenshot

تحميل ملف CRX للإضافة Website Tagger

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

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

                        Let's say:
- You want to tag your staging and product environments differently
- You want to tag your app differently when logged into a customer's account for debugging
- You want to tag websites when they are using a certain thing in the HTML. May be they are using your library!

This extension is just for you!                    

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

الاسم Website Tagger Website Tagger
ID mnafbagbhobbimnofgdibonhjidgildh
عنوان URL الرسمي https://chromewebstore.google.com/detail/website-tagger/mnafbagbhobbimnofgdibonhjidgildh
الوصف Tag websites on various conditions for easy recognition
حجم الملف 25.35 KB
عدد التثبيتات 28
النسخة الحالية 1.2
آخر تحديث 2020-05-17
تاريخ النشر 2020-05-17
المطور Kushagra Gour
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Tag websites on various conditions for easy recognition",
    "manifest_version": 2,
    "name": "Website Tagger",
    "version": "1.2",
    "browser_action": {
        "default_icon": "logo-64.png",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "icons": {
        "16": "logo-64.png",
        "48": "logo-64.png",
        "128": "logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "",
        "storage"
    ]
}