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

What is Free Article Finder?

Free Article Finder is a Chrome extension developed by ZorroLabs, and its main feature is "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free".

Extension Screenshots

screenshot

Download Free Article Finder Extension CRX File

Download Free Article Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Free Article Finder Free Article Finder
ID hnmihjjpgnnnmdagmhlonfokccjohoeo
Official URL https://chrome.google.com/webstore/detail/free-article-finder/hnmihjjpgnnnmdagmhlonfokccjohoeo
Description When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free
File Size 48.89 KB
Installation Count 722
Current Version 0.0.2
Last Updated 2017-04-05
Publish Date 2017-04-05
Rating 3.67/5 Total 3 Ratings
Developer ZorroLabs
Payment Type free
Extension Website http://github.com/award28/freeArticleFinder
Supported Languages 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"
    ]
}