Reddit Video URL Grabber

Automatically finds direct URLs to Reddit videos

Что такое Reddit Video URL Grabber?

Reddit Video URL Grabber - это расширение Chrome, разработанное Sean Pesce, и его основная функция - "Automatically finds direct URLs to Reddit videos".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Reddit Video URL Grabber

Скачайте файлы расширений Reddit Video URL Grabber в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Automatically finds direct URLs to Reddit videos (v.redd.it), so the user can link directly to the video (without being redirected to the Reddit comments).                    

Основная информация о расширении

Название Reddit Video URL Grabber Reddit Video URL Grabber
ID plpdigadhhbhmljndnmeipfjfohhcjad
Официальный URL https://chromewebstore.google.com/detail/reddit-video-url-grabber/plpdigadhhbhmljndnmeipfjfohhcjad
Описание Automatically finds direct URLs to Reddit videos
Размер файла 12.46 KB
Количество установок 730
Текущая Версия 2018.04.23.2
Последнее Обновление 2018-04-24
Дата публикации 2018-04-23
Рейтинг 2.67/5 Всего 15 оценок
Разработчик Sean Pesce
Тип оплаты free
Официальный сайт расширения https://github.com/SeanPesce/Reddit-Video-URL-Grabber
URL страницы помощи https://github.com/SeanPesce/Reddit-Video-URL-Grabber/blob/master/Readme.md#installing
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Video URL Grabber",
    "version": "2018.04.23.2",
    "description": "Automatically finds direct URLs to Reddit videos",
    "author": "Sean Pesce",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "RedditVideoURL.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "24": "images\/icons\/download\/ic_file_download_blue_dark_24dp_mdpi.png",
            "36": "images\/icons\/download\/ic_file_download_blue_dark_24dp_hdpi.png",
            "48": "images\/icons\/download\/ic_file_download_blue_dark_24dp_xhdpi.png",
            "72": "images\/icons\/download\/ic_file_download_blue_dark_24dp_xxhdpi.png",
            "96": "images\/icons\/download\/ic_file_download_blue_dark_24dp_xxxhdpi.png"
        }
    },
    "icons": {
        "24": "images\/icons\/download\/ic_file_download_blue_dark_24dp_mdpi.png",
        "36": "images\/icons\/download\/ic_file_download_blue_dark_24dp_hdpi.png",
        "48": "images\/icons\/download\/ic_file_download_blue_dark_24dp_xhdpi.png",
        "72": "images\/icons\/download\/ic_file_download_blue_dark_24dp_xxhdpi.png",
        "96": "images\/icons\/download\/ic_file_download_blue_dark_24dp_xxxhdpi.png"
    },
    "manifest_version": 2
}