Attributes Replacer

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

Wat is Attributes Replacer?

Attributes Replacer is een Chrome-extensie ontwikkeld door Krystian Jarmicki, en de belangrijkste functie is "Chrome extension allowing for easy replacement of HTML attributes' values.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Attributes Replacer

Download Attributes Replacer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        - 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                    

Basisinformatie over de Extensie

Naam Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
Officiële URL https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Beschrijving Chrome extension allowing for easy replacement of HTML attributes' values.
Bestandsgrootte 110 KB
Aantal Installaties 761
Huidige Versie 1.2.2
Laatst Bijgewerkt 2019-03-08
Publicatiedatum 2019-03-08
Beoordeling 4.14/5 Totaal 7 Beoordelingen
Ontwikkelaar Krystian Jarmicki
Betalingswijze free
Extensiewebsite https://github.com/kjarmicki/attributes-replacer
Help Pagina-URL https://github.com/kjarmicki/attributes-replacer/issues
Ondersteunde Talen 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"
}