Better Homestuck
Improves the Homestuck reading experience
Что такое Better Homestuck?
Better Homestuck - это расширение Chrome, разработанное DomNomNom, и его основная функция - "Improves the Homestuck reading experience".
Снимки экрана расширения
Скачать файл CRX расширения Better Homestuck
Скачайте файлы расширений Better Homestuck в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Brings the following to the Homestuck experience: - Instant load times for the next page - Keyboard controls (arrow keys) - Saves your reading progress by default - A unified "next" button - Handles special pages - Auto-expanded chat logs - Sensible scrolling when the next button is clicked and there is content below - Highlighting for chat lines of Doc Scratch - Minor page style tweaks - Links to discussion of the current page (where applicable) The last five features and some other minor things (eg. nice resizing) are not possible without the extension. The rest should might work without it by visiting http://better-homestuck.appspot.com/ A Firefox version of this is available here: https://addons.mozilla.org/en-US/firefox/addon/better-homestuck/ Dedicated to cjh.
Основная информация о расширении
Название | Better Homestuck |
ID | aaaidlpoefeeklbhpndokmfipimojimj |
Официальный URL | https://chromewebstore.google.com/detail/better-homestuck/aaaidlpoefeeklbhpndokmfipimojimj |
Описание | Improves the Homestuck reading experience |
Размер файла | 95.84 KB |
Количество установок | 460 |
Текущая Версия | 1.2.3 |
Последнее Обновление | 2016-03-13 |
Дата публикации | 2016-03-13 |
Рейтинг | 4.39/5 Всего 18 оценок |
Разработчик | DomNomNom |
Тип оплаты | free |
Официальный сайт расширения | http://domnomnom.com/ReadHomestuck/ |
URL страницы помощи | https://github.com/DomNomNom/ReadHomestuck |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Homestuck", "short_name": "BetterHomestuck", "description": "Improves the Homestuck reading experience", "version": "1.2.3", "browser_action": { "default_icon": "icon48.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "http:\/\/www.mspaintadventures.com\/*" ], "css": [ "overide.css" ], "js": [ "jquery.js", "contentscript.js" ], "all_frames": true } ] } |