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
官方網址 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"
    ]
}