Attributes Replacer

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

Cos'è Attributes Replacer?

Attributes Replacer è un'estensione di Chrome sviluppata da Krystian Jarmicki, e la sua funzione principale è "Chrome extension allowing for easy replacement of HTML attributes' values.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Attributes Replacer

Scarica i file di estensione Attributes Replacer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        - 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                    

Informazioni di Base sull'Estensione

Nome Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
URL Ufficiale https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Descrizione Chrome extension allowing for easy replacement of HTML attributes' values.
Dimensione del File 110 KB
Conteggio Installazioni 761
Versione Corrente 1.2.2
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 4.14/5 Totale 7 Valutazioni
Sviluppatore Krystian Jarmicki
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kjarmicki/attributes-replacer
URL della Pagina di Aiuto https://github.com/kjarmicki/attributes-replacer/issues
Lingue Supportate 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"
}