Transmitter

This extension will send magnet links to your transmission server

Transmitter là gì?

Transmitter là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension will send magnet links to your transmission server".

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

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

                        Configure your username, host, password & port by clicking the extension icon.
Find a magnet link, right-click it & select the 'transmit' option in order to send the magnet link to your server.                    

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

Tên Transmitter Transmitter
ID pmeodbpiabolghlcfppieefdnmokeang
URL Chính Thức https://chromewebstore.google.com/detail/transmitter/pmeodbpiabolghlcfppieefdnmokeang
Mô tả This extension will send magnet links to your transmission server
Kích Thước Tệp 173 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 0.0.0.2
Cập Nhật Lần Cuối 2017-04-25
Ngày Phát Hành 2017-04-25
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/patrikpihlstrom/transmitter-chrome
URL Trang Trợ Giúp https://github.com/patrikpihlstrom/transmitter-chrome/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Transmitter",
    "description": "This extension will send magnet links to your transmission server",
    "version": "0.0.0.2",
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/lib\/jquery.min.js",
            "js\/transmitter.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "html\/options.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lib\/jquery.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/lib\/*"
    ],
    "icons": {
        "16": "icon-small.png"
    }
}