Attributes Replacer

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

Co to jest Attributes Replacer?

Attributes Replacer to rozszerzenie Chrome opracowane przez Krystian Jarmicki, a jego główną funkcją jest „Chrome extension allowing for easy replacement of HTML attributes' values.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Attributes Replacer

Pobierz pliki rozszerzeń Attributes Replacer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        - 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                    

Podstawowe informacje o rozszerzeniu

Nazwa Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
Oficjalny URL https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Opis Chrome extension allowing for easy replacement of HTML attributes' values.
Rozmiar pliku 110 KB
Liczba instalacji 761
Aktualna Wersja 1.2.2
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 4.14/5 Łącznie 7 Oceny
Deweloper Krystian Jarmicki
Typ Płatności free
Strona Rozszerzenia https://github.com/kjarmicki/attributes-replacer
Adres URL Strony Pomocy https://github.com/kjarmicki/attributes-replacer/issues
Obsługiwane Języki 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"
}