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

¿Qué es Free Article Finder?

Free Article Finder es una extensión de Chrome desarrollada por ZorroLabs, y su función principal es "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Free Article Finder

Descarga archivos de extensión Free Article Finder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Free Article Finder Free Article Finder
ID hnmihjjpgnnnmdagmhlonfokccjohoeo
URL Oficial https://chrome.google.com/webstore/detail/free-article-finder/hnmihjjpgnnnmdagmhlonfokccjohoeo
Descripción When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free
Tamaño del Archivo 48.89 KB
Cantidad de Instalaciones 722
Versión Actual 0.0.2
Última Actualización 2017-04-05
Fecha de Publicación 2017-04-05
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador ZorroLabs
Tipo de Pago free
Sitio Web de la Extensión http://github.com/award28/freeArticleFinder
Idiomas Soportados 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"
    ]
}