Homestuck Notifier

Notifies you of updates to Homestuck.com (such as The Epilogues) & keeps track of your progress.

Τι είναι το Homestuck Notifier;

Το Homestuck Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jared Tyler, και η κύρια λειτουργία του είναι "Notifies you of updates to Homestuck.com (such as The Epilogues) & keeps track of your progress.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Automatically tracks your spot as you read through Homestuck (or any other story on that site: Problem Sleuth, The Homestuck Epilogues, etc.) and brings you back to the last page you've read at the click of a button.  No more needing to edit bookmarks manually, or struggling to remember your last page when you forgot to edit the bookmark.

It will also pop-up a notification whenever there is a new update on Homestuck.com.  If there are ever any additions to the epilogues, or if a brand new story gets posted, you'll know right away with this extension!

On the Options page, you can:
- turn notifications on or off
- upload a custom notification icon
- upload a custom sound clip to play when there are updates
- turn the page count on or off (if enabled, the button in the toolbar will show how many pages you have left to read)

You can find all the source code for this extension here: https://github.com/JMTyler/homestuck-notifier

The simplified Sburb house icon was created by Chris Howlett: https://howlettstudios.com

Homestuck itself and all related trademarks belong to Andrew Hussie & VIZ Media.  The green house-like icon for this extension was inspired by the Homestuck Sburb icon, which belongs to Andrew Hussie & VIZ Media.

This extension was previously called "MSPA Notifier" back when Homestuck could be found on MSPaintAdventures.com.                    

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

Όνομα Homestuck Notifier Homestuck Notifier
ID nclackehnjikcjeijdihkafcefjgnmmi
Επίσημο URL https://chromewebstore.google.com/detail/homestuck-notifier/nclackehnjikcjeijdihkafcefjgnmmi
Περιγραφή Notifies you of updates to Homestuck.com (such as The Epilogues) & keeps track of your progress.
Μέγεθος Αρχείου 96.97 KB
Αριθμός Εγκαταστάσεων 746
Τρέχουσα Έκδοση 2.0.1
Τελευταία Ενημέρωση 2020-05-06
Ημερομηνία Δημοσίευσης 2020-05-06
Αξιολόγηση 4.85/5 Συνολικά 95 Αξιολογήσεις
Προγραμματιστής Jared Tyler
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/JMTyler/homestuck-notifier
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/JMTyler/homestuck-notifier/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Homestuck Notifier",
    "description": "Notifies you of updates to Homestuck.com (such as The Epilogues) & keeps track of your progress.",
    "version": "2.0.1",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png"
        }
    },
    "background": {
        "scripts": [
            "settings.js",
            "memory.js",
            "version.js",
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "gcm",
        "notifications",
        "tabs",
        "https:\/\/www.homestuck.com\/*"
    ],
    "web_accessible_resources": [
        "icons\/48.png",
        "icons\/128.png"
    ],
    "minimum_chrome_version": "62",
    "manifest_version": 2
}