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

Apa itu Free Article Finder?

Free Article Finder adalah ekstensi Chrome yang dikembangkan oleh ZorroLabs, dan fitur utamanya adalah "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Free Article Finder

Unduh file ekstensi Free Article Finder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Free Article Finder Free Article Finder
ID hnmihjjpgnnnmdagmhlonfokccjohoeo
URL Resmi https://chrome.google.com/webstore/detail/free-article-finder/hnmihjjpgnnnmdagmhlonfokccjohoeo
Deskripsi When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free
Ukuran File 48.89 KB
Jumlah Instalasi 722
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2017-04-05
Tanggal Publikasi 2017-04-05
Penilaian 3.67/5 Total 3 Penilaian
Pengembang ZorroLabs
Tipe Pembayaran free
Situs Ekstensi http://github.com/award28/freeArticleFinder
Bahasa yang Didukung 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"
    ]
}