Degallerify
This extension will convert all instances of imgur.com/gallery/ links to direct links
Что такое Degallerify?
Degallerify - это расширение Chrome, разработанное JonLuca, и его основная функция - "This extension will convert all instances of imgur.com/gallery/ links to direct links".
Снимки экрана расширения
Скачать файл CRX расширения Degallerify
Скачайте файлы расширений Degallerify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension replaces all links that point to imgur's gallery feature to direct links to the image You can view the source code here: https://github.com/jonluca/Degallerify
Основная информация о расширении
Название | |
ID | jbloaejhknfcbegnkppflnkoechohdki |
Официальный URL | https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki |
Описание | This extension will convert all instances of imgur.com/gallery/ links to direct links |
Размер файла | 110 KB |
Количество установок | 96 |
Текущая Версия | 2.4 |
Последнее Обновление | 2017-02-28 |
Дата публикации | 2017-02-27 |
Рейтинг | 5.00/5 Всего 5 оценок |
Разработчик | JonLuca |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Degallerify", "description": "This extension will convert all instances of imgur.com\/gallery\/ links to direct links", "version": "2.4", "background": { "scripts": [ "js\/background.js", "js\/jquery-2.1.1.min.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js", "js\/jquery-2.1.1.min.js" ] } ], "icons": { "64": "images\/icon64.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "page_action": { "default_title": "Degallerify", "default_icon": "images\/icon.png" }, "homepage_url": "https:\/\/github.com\/jonluca\/Degallerify\/", "web_accessible_resources": [ "js\/jquery-2.1.1.min.js" ] } |