nzbget-chrome

Interact with and send NZB-files to NZBGet

nzbget-chrome là gì?

nzbget-chrome là một tiện ích mở rộng Chrome được phát triển bởi hpsu, và tính năng chính của nó là "Interact with and send NZB-files to NZBGet".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng nzbget-chrome

Tải xuống các tệp mở rộng nzbget-chrome 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

                        Chrome extension for interacting with Usenet downloader NZBGet (http://nzbget.net/).

Please use github page for bug reports and feature requests.
https://github.com/hpsu/nzbget-chrome

Version history:
1.5
* Category support
* New site scripts for ttRSS, FreshRSS
* Bug fixes and polish

1.4
* New tabbed popup appearance
* History search
* Chromium 49 compatibility fixes
* Various fixes

1.3
* Make popup notifications optional and use new rich notification API.
* Try to lookup status in notified downloads
* Use category Detected from site markup when no category is present in header.
* Support one-click integration for spotweb, binsearch, nzbindex.com
* Fixes and polish

1.2
* Better handling of connection failures
* Support one-click integration on nzbindex.nl
* Support one-click integration on fanzub.com
* Support one-click integration on DOGnzb (thanks @GrimSerious)
* Minor fixes to feedly support due to layout changes
* Updated appearance
* New feature: [optional] Persistent download status on download icons
* Progress bars now show estimated remaining download time

1.1

* Protocol selector (Thanks dakky)
* Less strict nzb header check (Thanks dakky)
* One-click site integration for newznab, feedly and nzbclub
* Provides category to NZBGet if available
* Show paused state on badge label color (Thanks pdf)
* Show nzb health in popup on low quality nzbs
* Use webp-icon in notifications, since rich notifications lost support for SVG
* Additional polish and bugfixes

1.0
* Initial release

Current features:
* Browser action popup that displays active downloads, history and stats
* Browser action icons badge indicating number of current active downloads
* Adds a context menu item to links to download with NZBGet
* Notification when downloads complete
* Uses no toolkits or frameworks, just Javascript, CSS3 and chrome.*-apis
* Drag-n-drop sorting of download queue
* Flow control (pause, resume, delete) on individual items or whole queue.                    

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

Tên nzbget-chrome nzbget-chrome
ID pbhceneiekgjjeblaghpkdkaomlloghm
URL Chính Thức https://chrome.google.com/webstore/detail/nzbget-chrome/pbhceneiekgjjeblaghpkdkaomlloghm
Mô tả Interact with and send NZB-files to NZBGet
Kích Thước Tệp 52.33 KB
Số Lần Cài Đặt 4,000
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2017-09-12
Ngày Phát Hành 2017-09-12
Đánh Giá 4.31/5 Tổng số 67 Đánh Giá
Nhà Phát Triển hpsu
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hpsu/nzbget-chrome
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/nzbget.js",
            "js\/utilities.js"
        ]
    },
    "description": "Interact with and send NZB-files to NZBGet",
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "img\/icon16.png",
        "img\/nzbget-arrow.svg"
    ],
    "name": "nzbget-chrome",
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "permissions": [
        "*:\/\/*\/",
        "contextMenus",
        "tabs",
        "notifications",
        "storage"
    ],
    "version": "1.5",
    "browser_action": {
        "default_icon": "img\/icon38.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.feedly.com\/*"
            ],
            "js": [
                "sites\/common.js",
                "sites\/feedly.js"
            ],
            "css": [
                "sites\/common.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.nzbclub.com\/*"
            ],
            "js": [
                "sites\/common.js",
                "sites\/nzbclub.js"
            ],
            "css": [
                "sites\/common.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.nzbindex.nl\/*",
                "*:\/\/*.nzbindex.com\/*"
            ],
            "js": [
                "sites\/common.js",
                "sites\/nzbindex.js"
            ],
            "css": [
                "sites\/common.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.binsearch.info\/*",
                "*:\/\/*.binsearch.net\/*"
            ],
            "js": [
                "sites\/common.js",
                "sites\/binsearch.js"
            ],
            "css": [
                "sites\/common.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.dognzb.cr\/*"
            ],
            "js": [
                "sites\/common.js",
                "sites\/dognzb.js"
            ],
            "css": [
                "sites\/common.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.newzleech.com\/*"
            ],
            "js": [
                "sites\/common.js",
                "sites\/newzleech.js"
            ],
            "css": [
                "sites\/common.css",
                "sites\/newzleech.css"
            ]
        }
    ]
}