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是由ZorroLabs开发的Chrome扩展程序,该扩展的主要功能是“When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free”。

扩展截图

screenshot

下载Free Article Finder扩展crx文件

下载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"
    ]
}