simple-modify-headers

Simple Modify headers

Τι είναι το simple-modify-headers;

Το simple-modify-headers είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον didierfred, και η κύρια λειτουργία του είναι "Simple Modify headers".

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

screenshot

Λήψη αρχείου CRX της επέκτασης simple-modify-headers

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

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

                        The extension rewrite the headers based on a rules table.

It's possible to:

    add , modify or delete header field for HTTP(S) request or response
    export the configuration in a file (json format)
    import the configuration from a file 
    choose urls on which the modifications applies 

In order to work, the following extension permissions are needed :

    storage : needed to store the configuration 
    activeTab, tabs : needed to show the configuration screen in the browser tab.
    webRequest,webRequestBlocking, : needed to modify the headers

More information on https://github.com/didierfred/SimpleModifyHeaders

The code is opensource under Mozilla Public License 2.0                    

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

Όνομα simple-modify-headers simple-modify-headers
ID gjgiipmpldkpbdfjkgofildhapegmmic
Επίσημο URL https://chromewebstore.google.com/detail/simple-modify-headers/gjgiipmpldkpbdfjkgofildhapegmmic
Περιγραφή Simple Modify headers
Μέγεθος Αρχείου 139 KB
Αριθμός Εγκαταστάσεων 14,752
Τρέχουσα Έκδοση 1.8.1
Τελευταία Ενημέρωση 2022-03-15
Ημερομηνία Δημοσίευσης 2019-09-17
Αξιολόγηση 4.50/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής didierfred
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Simple Modify headers ",
    "manifest_version": 2,
    "name": "simple-modify-headers",
    "version": "1.8.1",
    "homepage_url": "https:\/\/github.com\/didierfred\/SimpleModifyHeaders",
    "icons": {
        "48": "icons\/modify-48.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/modify-32.png",
        "default_title": "Simple Modify Headers",
        "default_popup": "popup\/menu.html"
    }
}