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"
    }
}