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 là gì?

Free Article Finder là một tiện ích mở rộng Chrome được phát triển bởi ZorroLabs, và tính năng chính của nó là "When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Free Article Finder

Tải xuống các tệp mở rộng Free Article Finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Free Article Finder Free Article Finder
ID hnmihjjpgnnnmdagmhlonfokccjohoeo
URL Chính Thức https://chrome.google.com/webstore/detail/free-article-finder/hnmihjjpgnnnmdagmhlonfokccjohoeo
Mô tả When browsing for an article on scholar.google.com this extension will inform the user the chance of an article being free
Kích Thước Tệp 48.89 KB
Số Lần Cài Đặt 722
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2017-04-05
Ngày Phát Hành 2017-04-05
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển ZorroLabs
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/award28/freeArticleFinder
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}