Transmitter

This extension will send magnet links to your transmission server

什么是Transmitter?

Transmitter是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension will send magnet links to your transmission server”。

下载Transmitter扩展crx文件

下载Transmitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Transmitter Transmitter
ID pmeodbpiabolghlcfppieefdnmokeang
官方URL https://chromewebstore.google.com/detail/transmitter/pmeodbpiabolghlcfppieefdnmokeang
简介 This extension will send magnet links to your transmission server
文件大小 173 KB
安装次数 29
当前版本 0.0.0.2
更新时间 2017-04-25
上架时间 2017-04-25
开发者 Unknown
付费类型 free
扩展官网 https://github.com/patrikpihlstrom/transmitter-chrome
帮助页面URL https://github.com/patrikpihlstrom/transmitter-chrome/issues
支持的语言 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"
    }
}