XKCD Alt Text
The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description…
Что такое XKCD Alt Text?
XKCD Alt Text - это расширение Chrome, разработанное James Kwan, и его основная функция - "The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description…".
Снимки экрана расширения
Скачать файл CRX расширения XKCD Alt Text
Скачайте файлы расширений XKCD Alt Text в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description beneath the comic, so that you don't have to try and read the tiny hover text before it fades away. It can also move the header below the comic, to increase visibility. This feature can easily be disabled. Update 2.8.1: Works over HTTPS
Основная информация о расширении
Название | XKCD Alt Text |
ID | gncnccgkhldnjnmhlmgcghhgbckeobph |
Официальный URL | https://chromewebstore.google.com/detail/xkcd-alt-text/gncnccgkhldnjnmhlmgcghhgbckeobph |
Описание | The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description… |
Размер файла | 57.64 KB |
Количество установок | 736 |
Текущая Версия | 2.8.1 |
Последнее Обновление | 2014-01-27 |
Дата публикации | 2014-01-26 |
Рейтинг | 4.06/5 Всего 17 оценок |
Разработчик | James Kwan |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html" }, "content_scripts": [ { "js": [ "jquery.min.js", "xkcdalt.js" ], "matches": [ "*:\/\/xkcd.com\/*", "*:\/\/xkcd.org\/*", "*:\/\/xkcd.net\/*", "*:\/\/www.xkcd.com\/*", "*:\/\/www.xkcd.org\/*", "*:\/\/www.xkcd.net\/*" ], "run_at": "document_end" } ], "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "name": "XKCD Alt Text", "version": "2.8.1" } |