Transmitter for Transmission

Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status.

Transmitter for Transmission란 무엇입니까?

Transmitter for Transmission은(는) unrelenting.technology에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Transmitter for Transmission 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A WebExtension for the Transmission BitTorrent client.

Adds a context menu item for downloading torrents (both magnets and links to .torrent files) on your remote Transmission server.

Adds a browser action (popup toolbar icon thing) that lets you view existing torrents' status.
That button even has a badge (auto-updating torrent count / download speed / upload speed).

Automatically picks up your session from the Transmission web UI, no need for separate authentication.

Works fine if your Transmission instance is behind a reverse proxy that uses TLS client certificates.                    

확장 프로그램 기본 정보

이름 Transmitter for Transmission Transmitter for Transmission
ID cdmpmfcgepijfiaaojbahpmpjfkgdgja
공식 URL https://chromewebstore.google.com/detail/transmitter-for-transmiss/cdmpmfcgepijfiaaojbahpmpjfkgdgja
설명 Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status.
파일 크기 20.37 KB
설치 횟수 846
현재 버전 1.1.1
최근 업데이트 2017-12-06
출시 날짜 2017-12-06
평점 3.40/5 총 5 개의 평점
개발자 unrelenting.technology
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/myfreeweb/transmitter
도움말 페이지 URL https://github.com/myfreeweb/transmitter/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Transmitter for Transmission",
    "author": "unrelenting.technology",
    "version": "1.1.1",
    "description": "Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "alarms",
        "contextMenus",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/transmitter.web-extension\/*",
        ""
    ],
    "optional_permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Transmitter",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "background": {
        "persistent": true,
        "scripts": [
            "browser-polyfill.min.js",
            "common.js",
            "background.js"
        ]
    }
}