Block Unreachable Scripts

Prevent unreachable servers from stalling websites by disabling their scripts for 5 minutes if they previously could not load.

Τι είναι το Block Unreachable Scripts;

Το Block Unreachable Scripts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον em_te, και η κύρια λειτουργία του είναι "Prevent unreachable servers from stalling websites by disabling their scripts for 5 minutes if they previously could not load.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Block Unreachable Scripts

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

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

                        Some websites load JavaScript from third-party servers that are sometimes unreachable (because of firewalls/DNS/bad SSLs/Google down/etc.). This will cause the website to stall (freeze) as it waits for that server to respond. The only recourse is to wait patiently for that request to time out, before the website can continue loading.

This extension will monitor those failed JavaScript requests and will skip over them if any websites try to load from those servers again. This prevents the website from stalling again. The block will only occur for 5 minutes in case the server is restored later.

Failed requests can be viewed in the toolbar button, which shows which URLs were blocked and how long the block will last. The toolbar button only appears when scripts are blocked.

Note that this extension does not target anyone and has no black-list or white-list. Blocking only occurs if the server was previously unreachable and therefore the content would not have loaded anyway.

Test the effects of unreachable servers here: http://tinyurl.com/test-blocking-js                    

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

Όνομα Block Unreachable Scripts Block Unreachable Scripts
ID bjpekooigmapidmaojdogelhmakafmfi
Επίσημο URL https://chromewebstore.google.com/detail/block-unreachable-scripts/bjpekooigmapidmaojdogelhmakafmfi
Περιγραφή Prevent unreachable servers from stalling websites by disabling their scripts for 5 minutes if they previously could not load.
Μέγεθος Αρχείου 11.06 KB
Αριθμός Εγκαταστάσεων 1,085
Τρέχουσα Έκδοση 0.4
Τελευταία Ενημέρωση 2017-09-26
Ημερομηνία Δημοσίευσης 2017-09-26
Αξιολόγηση 4.20/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής em_te
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://em-te.github.io/privacy
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "author": "Terry Yuen",
    "version": "0.4",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "19": "page_19.png",
        "38": "page_38.png",
        "48": "page_48.png",
        "96": "page_96.png"
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "browser_style": true,
        "default_icon": {
            "19": "page_19.png",
            "38": "page_38.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}