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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Free Article Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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