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

Vad är Free Article Finder?

Free Article Finder är en Chrome-tillägg utvecklad av ZorroLabs, och dess huvudfunktion är "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free".

Tilläggsskärmbilder

screenshot

Ladda ner Free Article Finder-förlängningens CRX-fil

Ladda ner Free Article Finder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Free Article Finder Free Article Finder
ID hnmihjjpgnnnmdagmhlonfokccjohoeo
Officiell webbadress https://chrome.google.com/webstore/detail/free-article-finder/hnmihjjpgnnnmdagmhlonfokccjohoeo
Beskrivning When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free
Filstorlek 48.89 KB
Antal Installationer 722
Aktuell Version 0.0.2
Senast Uppdaterad 2017-04-05
Publiceringsdatum 2017-04-05
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare ZorroLabs
Betalningssätt free
Tilläggswebbplats http://github.com/award28/freeArticleFinder
Stödda Språk 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"
    ]
}