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 Основная информация о расширении
| Название | |
| 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
} | |