Attributes Replacer

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

Τι είναι το Attributes Replacer;

Το Attributes Replacer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Krystian Jarmicki, και η κύρια λειτουργία του είναι "Chrome extension allowing for easy replacement of HTML attributes' values.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Attributes Replacer

Λήψη αρχείων επέκτασης Attributes Replacer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        - 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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
Επίσημο URL https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Περιγραφή Chrome extension allowing for easy replacement of HTML attributes' values.
Μέγεθος Αρχείου 110 KB
Αριθμός Εγκαταστάσεων 761
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2019-03-08
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 4.14/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Krystian Jarmicki
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/kjarmicki/attributes-replacer
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/kjarmicki/attributes-replacer/issues
Υποστηριζόμενες Γλώσσες 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"
}