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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        - 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
URL หน้าช่วยเหลือ 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"
}