Random "xkcd: what if?"

Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.

Τι είναι το Random "xkcd: what if?";

Το Random "xkcd: what if?" είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nicholas Currault, και η κύρια λειτουργία του είναι "Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Random "xkcd: what if?"

Λήψη αρχείων επέκτασης Random "xkcd: what if?" σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Update (v1.0.1): Fixes a bug which caused the references to become unclickable.  Thanks to Reddit user /u/Notagtipsy for pointing this out.

Update (v2.0.0): Improves efficiency: a random comic will only be requested if the button is clicked. This is similar to the xkcd random button.  Also, I added an icon derived from the "What If?" logo!

Update (v2.0.1): Fixed bug that made the random button always point to the current comic under some conditions.                    

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

Όνομα Random Random "xkcd: what if?"
ID beobagcklikbfmdkohjnapachgcpbgid
Επίσημο URL https://chrome.google.com/webstore/detail/random-xkcd-what-if/beobagcklikbfmdkohjnapachgcpbgid
Περιγραφή Implements the random button (which exists on the xkcd homepage) on the "what if" section of xkcd.
Μέγεθος Αρχείου 27.84 KB
Αριθμός Εγκαταστάσεων 24
Τρέχουσα Έκδοση 2.0.1
Τελευταία Ενημέρωση 2016-08-02
Ημερομηνία Δημοσίευσης 2016-08-02
Αξιολόγηση 4.25/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Nicholas Currault
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random \"xkcd: what if?\"",
    "description": "Implements the random button (which exists on the xkcd homepage) on the \"what if\" section of xkcd.",
    "version": "2.0.1",
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "main.user.js"
            ],
            "matches": [
                "*:\/\/*.whatif.xkcd.com\/*",
                "*:\/\/*.what-if.xkcd.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "converted_from_user_script": true,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}