Attributes Replacer

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

Attributes Replacer क्या है?

Attributes Replacer Krystian Jarmicki द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension allowing for easy replacement of HTML attributes' values."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Attributes Replacer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
}