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

Cos'è Free Article Finder?

Free Article Finder è un'estensione di Chrome sviluppata da ZorroLabs, e la sua funzione principale è "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Free Article Finder

Scarica i file di estensione Free Article Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Free Article Finder Free Article Finder
ID hnmihjjpgnnnmdagmhlonfokccjohoeo
URL Ufficiale https://chrome.google.com/webstore/detail/free-article-finder/hnmihjjpgnnnmdagmhlonfokccjohoeo
Descrizione When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free
Dimensione del File 48.89 KB
Conteggio Installazioni 722
Versione Corrente 0.0.2
Ultimo Aggiornamento 2017-04-05
Data di Pubblicazione 2017-04-05
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore ZorroLabs
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/award28/freeArticleFinder
Lingue Supportate 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"
    ]
}