xkcd #37

This extension actually implements xkcd #37. Yeah, for real.

Τι είναι το xkcd #37;

Το xkcd #37 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://blog.tomayac.com, και η κύρια λειτουργία του είναι "This extension actually implements xkcd #37. Yeah, for real.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης xkcd #37

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

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

                        Albeit famous exceptions exist in form of Wikis, the Web today is still mostly a read-only experience. This leaves the Web content consumer exposed to all sorts of typographic cruelties, such as representing the ellipsis character ’…’ with three single full stops “...”, incorrect usage of a normal space where a non-breaking space would be preferred and even omission of the Oxford comma... While fighting the cause, namely sloppy Web authors, is like a fight against wind mills and certainly impossible to realize on Web scale, fighting the symptoms is a realistic option. Using client-side work-arounds, the Web can actually be fixed one page at a time. With this extension, we show how via part-of-speech tagging and JavaScript DOM event listeners, the Web can be made a better place.

On a related note, this extension has the bad ass-feature of actually implementing xkcd #37: http://xkcd.com/37/ Yeah, for real

Read the accompanying scientific paper: https://docs.google.com/open?id=0B9LlSNwL2H8YbkpsV0pLQnM2bXc                    

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

Όνομα xkcd #37 xkcd #37
ID kjlobohamcahepbjhcnjhhpdgmhjkjli
Επίσημο URL https://chromewebstore.google.com/detail/xkcd-37/kjlobohamcahepbjhcnjhhpdgmhjkjli
Περιγραφή This extension actually implements xkcd #37. Yeah, for real.
Μέγεθος Αρχείου 722 KB
Αριθμός Εγκαταστάσεων 65
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2020-12-05
Ημερομηνία Δημοσίευσης 2013-06-27
Αξιολόγηση 2.73/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής https://blog.tomayac.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://docs.google.com/open?id=0B9LlSNwL2H8YMGVlZjIzZTAtN2JiZS00MzIxLThjNDYtMDFhMDQ3NTEzYzU2
Διεύθυνση URL της Σελίδας Βοήθειας http://twitter.com/tomayac
URL της Σελίδας Πολιτικής Απορρήτου https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt
Υποστηριζόμενες Γλώσσες de,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.0.6",
    "manifest_version": 2,
    "description": "__MSG_extDesc__",
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "default_locale": "en_US",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "lexer.js",
                "POSTagger.js",
                "lexicon.js",
                "amazon.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}