VG News

Makes the front page of VG.no look like Hacker News.

Что такое VG News?

VG News - это расширение Chrome, разработанное Michael Johansen, и его основная функция - "Makes the front page of VG.no look like Hacker News.".

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

screenshot

Скачать файл CRX расширения VG News

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

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

                        This extension was made for demo purposes in relation to a 30-minute workshop on Chrome extensions where I work. Use both the extension and the code (see GitHub) at your own discretion. I take absolutely no responsibility for anyones use of the extension or the code. Questions? Send me an email.                    

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

Название VG News VG News
ID efehmpikadfdbcabkelfcggeodojbkej
Официальный URL https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej
Описание Makes the front page of VG.no look like Hacker News.
Размер файла 55.61 KB
Количество установок 40
Текущая Версия 0.4.0
Последнее Обновление 2016-10-11
Дата публикации 2016-10-11
Разработчик Michael Johansen
Тип оплаты free
Официальный сайт расширения https://github.com/michaeljohansen/vg-news
Поддерживаемые языки no
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VG News",
    "description": "Makes the front page of VG.no look like Hacker News.",
    "manifest_version": 2,
    "version": "0.4.0",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.vg.no\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "vgnews.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "128.png"
    ]
}