AutoChan

A 4chan.org extension for expanding images inline and automatically updating the page with new posts.

Τι είναι το AutoChan;

Το AutoChan είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jon Sangster, και η κύρια λειτουργία του είναι "A 4chan.org extension for expanding images inline and automatically updating the page with new posts.".

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

screenshot

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

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

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

                        This extension has two primary features:

1. Expanding images in place.

Images are downloaded and placed directly in the thread. In the place of each thumbnail, there will instead be a dashed box in which the posted image will be loaded. You can see the dashed box fill in with the image as it downloads. Once the image is downloaded, it will grow to its actual size. If it's a big image, wider than your browser window, it will be sized to fit the window, so you don't have to do any annoying horizontal-scrolling. You can still click on image to open it in a new tab, like before.

2. Automatically adding new replies to the page when they become available.

Once you've got a thread open in a tab, you can just leave it open and new replies will be added to the bottom of the page, when they're posted. If the page 404's (or the server goes down, your internet connection dies, etc.) a big, red bar will appear on the bottom of the browser window telling you what happened.

To save your (and more importantly, 4chan's) bandwidth, instead of constantly re-downloading the thread and checking for new posts, we simply send a small request to 4chan's server asking the last time the thread was updated and then only downloading the new posts if the thread was updated after the last time we downloaded posts from it.                    

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

Όνομα AutoChan AutoChan
ID olijinpnmanacholmnpcmgenjpnmpdjh
Επίσημο URL https://chrome.google.com/webstore/detail/autochan/olijinpnmanacholmnpcmgenjpnmpdjh
Περιγραφή A 4chan.org extension for expanding images inline and automatically updating the page with new posts.
Μέγεθος Αρχείου 51.52 KB
Αριθμός Εγκαταστάσεων 128
Τρέχουσα Έκδοση 0.8.4
Τελευταία Ενημέρωση 2013-11-22
Ημερομηνία Δημοσίευσης 2013-11-22
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Jon Sangster
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://4chan.ertt.ca
Διεύθυνση URL της Σελίδας Βοήθειας http://4chan.ertt.ca/faq
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoChan",
    "version": "0.8.4",
    "description": "A 4chan.org extension for expanding images inline and automatically updating the page with new posts.",
    "icons": {
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/boards.4chan.org\/*\/res\/*"
            ],
            "run_at": "document_end",
            "css": [
                "override.css",
                "autochan.css"
            ],
            "js": [
                "init.js",
                "lib\/jquery.js",
                "Regex.js",
                "PrimaryDomModification.js",
                "document_end.js"
            ]
        },
        {
            "matches": [
                "*:\/\/boards.4chan.org\/*\/res\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "init.js",
                "lib\/jquery.js",
                "Regex.js",
                "ImageQueue.js",
                "PrimaryDomModification.js",
                "ResizeImage.js",
                "ResizeAllImages.js",
                "Updater.js",
                "HttpErrorNotification.js",
                "Main.js",
                "document_idle.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/boards.4chan.org\/"
    ]
}