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

Co to jest Free Article Finder?

Free Article Finder to rozszerzenie Chrome opracowane przez ZorroLabs, a jego główną funkcją jest „When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Free Article Finder

Pobierz pliki rozszerzeń Free Article Finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Free Article Finder Free Article Finder
ID hnmihjjpgnnnmdagmhlonfokccjohoeo
Oficjalny URL https://chrome.google.com/webstore/detail/free-article-finder/hnmihjjpgnnnmdagmhlonfokccjohoeo
Opis When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free
Rozmiar pliku 48.89 KB
Liczba instalacji 722
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2017-04-05
Data Publikacji 2017-04-05
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper ZorroLabs
Typ Płatności free
Strona Rozszerzenia http://github.com/award28/freeArticleFinder
Obsługiwane Języki 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"
    ]
}