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
官方網址 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"
    }
}