VSCO Viewer
Opens highest possible resolution VSCO images in a new tab!
Что такое VSCO Viewer?
VSCO Viewer - это расширение Chrome, разработанное alex, и его основная функция - "Opens highest possible resolution VSCO images in a new tab!".
Снимки экрана расширения
Скачать файл CRX расширения VSCO Viewer
Скачайте файлы расширений VSCO Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
*WARNING* I am not responsible for any misuse of this program. DO NOT use users' pictures for commercial use without their permission. Opens VSCO images in a new tab at the highest resolution possible! Not affiliated with VSCO in any way. Based off of Click to Remove Element (CTRE) by @blade_sk with permission. You can find the changelog at https://pastebin.com/qayjcucq Please leave a review and/or suggestion! Either would help me greatly! Thanks!
Основная информация о расширении
Название | VSCO Viewer |
ID | afmhfdkkjmddchbkdlhgejiclbbpgfbf |
Официальный URL | https://chromewebstore.google.com/detail/vsco-viewer/afmhfdkkjmddchbkdlhgejiclbbpgfbf |
Описание | Opens highest possible resolution VSCO images in a new tab! |
Размер файла | 12.14 KB |
Количество установок | 4,918 |
Текущая Версия | 1.2.1 |
Последнее Обновление | 2018-04-23 |
Дата публикации | 2018-04-22 |
Рейтинг | 4.41/5 Всего 27 оценок |
Разработчик | alex |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://pastebin.com/qayjcucq |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "all_frames": false, "js": [ "vs_content.js" ], "matches": [ "*:\/\/vsco.co\/*" ], "run_at": "document_end" } ], "description": "Opens highest possible resolution VSCO images in a new tab!", "icons": { "128": "icon_128.png", "16": "icon_16.png", "48": "icon_48.png" }, "incognito": "spanning", "manifest_version": 2, "name": "VSCO Viewer", "permissions": [ "tabs", "*:\/\/vsco.co\/*" ], "version": "1.2.1" } |