Free Article Finder

When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free

Что такое Free Article Finder?

Free Article Finder - это расширение Chrome, разработанное ZorroLabs, и его основная функция - "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free".

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

screenshot

Скачать файл CRX расширения Free Article Finder

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

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

                        When browsing for an article on scholar.google.com this extension will display the chance of an article being free.                    

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

Название Free Article Finder Free Article Finder
ID hnmihjjpgnnnmdagmhlonfokccjohoeo
Официальный URL https://chrome.google.com/webstore/detail/free-article-finder/hnmihjjpgnnnmdagmhlonfokccjohoeo
Описание When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free
Размер файла 48.89 KB
Количество установок 722
Текущая Версия 0.0.2
Последнее Обновление 2017-04-05
Дата публикации 2017-04-05
Рейтинг 3.67/5 Всего 3 оценок
Разработчик ZorroLabs
Тип оплаты free
Официальный сайт расширения http://github.com/award28/freeArticleFinder
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Free Article Finder",
    "description": "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free",
    "version": "0.0.2",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scholar.google.com\/*",
                "http:\/\/scholar.google.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "ripple.gif"
    ]
}