Reddit Smart Share

Simple sharing plugin for reddit.

Что такое Reddit Smart Share?

Reddit Smart Share - это расширение Chrome, разработанное ItsLennysFault, и его основная функция - "Simple sharing plugin for reddit.".

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

screenshot

Скачать файл CRX расширения Reddit Smart Share

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

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

                        Simple extension to make it easier to share things from Reddit. All it does is add a small icon to the top left corner of any reddit video player with a link to the direct video URL.                    

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

Название Reddit Smart Share Reddit Smart Share
ID ldggeafbkacldageoihoigakolmgeekg
Официальный URL https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg
Описание Simple sharing plugin for reddit.
Размер файла 14.88 KB
Количество установок 89
Текущая Версия 0.0.1
Последнее Обновление 2018-01-29
Дата публикации 2018-01-29
Рейтинг 5.00/5 Всего 1 оценок
Разработчик ItsLennysFault
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/RedditSmartShare/RedditSmartShareChrome
URL страницы помощи https://github.com/RedditSmartShare/RedditSmartShareChrome
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Smart Share",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Simple sharing plugin for reddit.",
    "homepage_url": "https:\/\/github.com\/RedditSmartShare\/RedditSmartShareChrome",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/www.reddit.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/*.png"
    ]
}