HTTP to HTTPS

Automatically switched to secure HTTP version of webpages if possible.

Τι είναι το HTTP to HTTPS;

Το HTTP to HTTPS είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον balvin.perrie, και η κύρια λειτουργία του είναι "Automatically switched to secure HTTP version of webpages if possible.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης HTTP to HTTPS

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

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

                        An extension to automatically use HTTPS protocol when possible. When the extension is enabled, it switches insecure "HTTP" pages to the secure "HTTPS" alternative when the server supports secure communication. In oppose to the popular HTTPS Anywhere extension, this one does not have a predefined set of sites that support HTTPS protocol, instead, it evaluates the unsecured site upon the first usage.

Source code and bug tracker are available at:
https://github.com/balvin-perrie/http-to-https

Notes:
1. If automatic switching to HTTPS protocol for a website causes it to look broken, use the toolbar popup to add the page or the hostname to the exception list and reload the page in the HTTP protocol.
2. You can place your mouse over the toolbar button to get more info about the color codes that this extension uses. Also, make sure to read the FAQs page.

Logs:
v0.1.1
1. Do not redirect *.onion websites based on https://github.com/balvin-perrie/http-to-https/issues/2                    

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

Όνομα HTTP to HTTPS HTTP to HTTPS
ID bodjneffehabmoepacpcomhfakbpagbe
Επίσημο URL https://chromewebstore.google.com/detail/http-to-https/bodjneffehabmoepacpcomhfakbpagbe
Περιγραφή Automatically switched to secure HTTP version of webpages if possible.
Μέγεθος Αρχείου 98.47 KB
Αριθμός Εγκαταστάσεων 2,313
Τρέχουσα Έκδοση 0.1.1
Τελευταία Ενημέρωση 2019-01-26
Ημερομηνία Δημοσίευσης 2019-01-21
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής balvin.perrie
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://add0n.com/http-to-https.html
Διεύθυνση URL της Σελίδας Βοήθειας https://add0n.com/http-to-https.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/balvin.perrie.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1.1",
    "name": "HTTP to HTTPS",
    "description": "Automatically switched to secure HTTP version of webpages if possible.",
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        "webNavigation"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "button.js",
            "background.js"
        ]
    },
    "homepage_url": "http:\/\/add0n.com\/http-to-https.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "19": "data\/icons\/19.png",
        "32": "data\/icons\/32.png",
        "38": "data\/icons\/38.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "19": "data\/icons\/19.png",
            "32": "data\/icons\/32.png",
            "38": "data\/icons\/38.png",
            "48": "data\/icons\/48.png"
        },
        "default_popup": "data\/popup\/index.html"
    }
}