Homestuck Annotations
An extension for writing, sharing and viewing notes written for the webcomic Homestuck.
Was ist Homestuck Annotations?
Homestuck Annotations ist eine Chrome-Erweiterung, die von wimbleimble entwickelt wurde, und ihr Hauptmerkmal ist "An extension for writing, sharing and viewing notes written for the webcomic Homestuck.".
Erweiterungsscreenshots
Homestuck Annotations-Erweiterungs-CRX-Datei herunterladen
Laden Sie Homestuck Annotations-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nalihmjaadbmmekllaoleaeipomjkocp |
| Offizielle URL | https://chromewebstore.google.com/detail/homestuck-annotations/nalihmjaadbmmekllaoleaeipomjkocp |
| Beschreibung | An extension for writing, sharing and viewing notes written for the webcomic Homestuck. |
| Dateigröße | 37.42 KB |
| Installationsanzahl | 65 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2019-11-26 |
| Veröffentlichungsdatum | 2019-11-26 |
| Entwickler | wimbleimble |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
} | |