Attributes Replacer

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

What is Attributes Replacer?

Attributes Replacer is a Chrome extension developed by Krystian Jarmicki, and its main feature is "Chrome extension allowing for easy replacement of HTML attributes' values.".

Extension Screenshots

screenshot

Download Attributes Replacer Extension CRX File

Download Attributes Replacer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        - 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                    

Extension Basic Information

Name Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
Official URL https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Description Chrome extension allowing for easy replacement of HTML attributes' values.
File Size 110 KB
Installation Count 761
Current Version 1.2.2
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 4.14/5 Total 7 Ratings
Developer Krystian Jarmicki
Payment Type free
Extension Website https://github.com/kjarmicki/attributes-replacer
Help Page URL https://github.com/kjarmicki/attributes-replacer/issues
Supported Languages 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"
}