Attributes Replacer

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

Was ist Attributes Replacer?

Attributes Replacer ist eine Chrome-Erweiterung, die von Krystian Jarmicki entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension allowing for easy replacement of HTML attributes' values.".

Erweiterungsscreenshots

screenshot

Attributes Replacer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Attributes Replacer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        - 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                    

Grundlegende Informationen zur Erweiterung

Name Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
Offizielle URL https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Beschreibung Chrome extension allowing for easy replacement of HTML attributes' values.
Dateigröße 110 KB
Installationsanzahl 761
Aktuelle Version 1.2.2
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 4.14/5 Insgesamt 7 Bewertungen
Entwickler Krystian Jarmicki
Zahlungsart free
Erweiterungswebsite https://github.com/kjarmicki/attributes-replacer
Hilfeseite URL https://github.com/kjarmicki/attributes-replacer/issues
Unterstützte Sprachen 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"
}