Transmitter

This extension will send magnet links to your transmission server

What is Transmitter?

Transmitter is a Chrome extension developed by Unknown, and its main feature is "This extension will send magnet links to your transmission server".

Download Transmitter Extension CRX File

Download Transmitter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Transmitter Transmitter
ID pmeodbpiabolghlcfppieefdnmokeang
Official URL https://chromewebstore.google.com/detail/transmitter/pmeodbpiabolghlcfppieefdnmokeang
Description This extension will send magnet links to your transmission server
File Size 173 KB
Installation Count 29
Current Version 0.0.0.2
Last Updated 2017-04-25
Publish Date 2017-04-25
Developer Unknown
Payment Type free
Extension Website https://github.com/patrikpihlstrom/transmitter-chrome
Help Page URL https://github.com/patrikpihlstrom/transmitter-chrome/issues
Supported Languages 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"
    }
}