Homestuck Annotations
An extension for writing, sharing and viewing notes written for the webcomic Homestuck.
Τι είναι το Homestuck Annotations;
Το Homestuck Annotations είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον wimbleimble, και η κύρια λειτουργία του είναι "An extension for writing, sharing and viewing notes written for the webcomic Homestuck.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Homestuck Annotations
Λήψη αρχείων επέκτασης Homestuck Annotations σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
It's like homestuck, but with comments. Add your own notes, save them to a file, share and combine with friends. The authour is you! Feature overview: ~ Add your own annotations at the bottom of each homestuck page. ~ Annotations automatically save locally. ~ Download annotation files. ~ Load annotation files. ~ Merge annotation files and COLLABORATE WITH FRIENDS :-) june egbert is real
Βασικές Πληροφορίες Επέκτασης
Όνομα | Homestuck Annotations |
ID | nalihmjaadbmmekllaoleaeipomjkocp |
Επίσημο URL | https://chromewebstore.google.com/detail/homestuck-annotations/nalihmjaadbmmekllaoleaeipomjkocp |
Περιγραφή | An extension for writing, sharing and viewing notes written for the webcomic Homestuck. |
Μέγεθος Αρχείου | 37.42 KB |
Αριθμός Εγκαταστάσεων | 65 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2019-11-26 |
Ημερομηνία Δημοσίευσης | 2019-11-26 |
Προγραμματιστής | wimbleimble |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Homestuck Annotations", "version": "1.1", "description": "An extension for writing, sharing and viewing notes written for the webcomic Homestuck.", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistant": false }, "page_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.homestuck.com\/story\/*" ], "run_at": "document_idle", "js": [ "script.js" ] } ], "icons": { "16": "icons\/Icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/Icon_128.png" }, "manifest_version": 2 } |