Transmitter

This extension will send magnet links to your transmission server

Transmitterคืออะไร?

Transmitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension will send magnet links to your transmission server"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Transmitter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}