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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة Free Article Finder

قم بتنزيل ملفات الامتداد Free Article Finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}