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