Attributes Replacer

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

Apa itu Attributes Replacer?

Attributes Replacer adalah ekstensi Chrome yang dikembangkan oleh Krystian Jarmicki, dan fitur utamanya adalah "Chrome extension allowing for easy replacement of HTML attributes' values.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Attributes Replacer

Unduh file ekstensi Attributes Replacer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        - 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                    

Informasi Dasar Ekstensi

Nama Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
URL Resmi https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Deskripsi Chrome extension allowing for easy replacement of HTML attributes' values.
Ukuran File 110 KB
Jumlah Instalasi 761
Versi Saat Ini 1.2.2
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 4.14/5 Total 7 Penilaian
Pengembang Krystian Jarmicki
Tipe Pembayaran free
Situs Ekstensi https://github.com/kjarmicki/attributes-replacer
URL Halaman Bantuan https://github.com/kjarmicki/attributes-replacer/issues
Bahasa yang Didukung 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"
}