Attributes Replacer

Chrome extension allowing for easy replacement of HTML attributes' values.

ما هو Attributes Replacer؟

Attributes Replacer هو إضافة Chrome تم تطويرها بواسطة Krystian Jarmicki، والميزة الرئيسية لها هي "Chrome extension allowing for easy replacement of HTML attributes' values.".

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

screenshot

تحميل ملف CRX للإضافة Attributes Replacer

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

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

                        - uses CSS selectors to match given attributes
- uses regular expressions to set up replacement rules
- multiple selectors and rules supported
- page is watched for DOM changes and rules are applied to newly added elements
- changes are reverted when replacing is turned off
- changes occur on all tabs simultaneously
- also allows to perform replacement on current page url                    

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

الاسم Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
عنوان URL الرسمي https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
الوصف Chrome extension allowing for easy replacement of HTML attributes' values.
حجم الملف 110 KB
عدد التثبيتات 761
النسخة الحالية 1.2.2
آخر تحديث 2019-03-08
تاريخ النشر 2019-03-08
تقييم 4.14/5 مجموع تقييمات 7
المطور Krystian Jarmicki
نوع الدفع free
موقع الإضافة https://github.com/kjarmicki/attributes-replacer
عنوان صفحة المساعدة https://github.com/kjarmicki/attributes-replacer/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "name": "Attributes Replacer",
    "description": "Chrome extension allowing for easy replacement of HTML attributes' values.",
    "version": "1.2.2"
}