JSIT Uploader

Upload selected magnet:/torrents to justseed.it

JSIT Uploaderคืออะไร?

JSIT Uploader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย touchtoner และคุณลักษณะหลักของมันคือ "Upload selected magnet:/torrents to justseed.it"

ภาพหน้าจอของส่วนขยาย

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย JSIT Uploader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension allows uploading of magnet: or torrent links directly to the justseed.it seedbox service, with a single click from the torrent tracker site, much more conveniently than copy-n-pasting links or downloading and uploading torrent files. However, you need a paid account on justseed.it to use this extension, and you have to have an active API key (enable it in Options).

It can handle a wide range of sites, but there are probably some that won't work. For those you can try to automatically detect a pattern by using right-click -> Learn Pattern on two different (!) download links. If that doesn't work, please submit an issue on github (see below) with the site link (if it's a private tracker please contact us by email and we'll see what we can do). If it does work please submit the resulting pattern (you can see all your pattern on the extension's option page) as an enhancement request on github so that it can be included in the official release.

See http://forum.justseed.it/discussion/987/chrome-uploader for a discussion on its uses and merits.

This extension is Open Source, source code is available at https://github.com/TouchTone/jsit_chrome_plugin .                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ JSIT Uploader JSIT Uploader
ID mnjnileinmmcioblmhbgfaikgecolgbo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/jsit-uploader/mnjnileinmmcioblmhbgfaikgecolgbo
คำอธิบาย Upload selected magnet:/torrents to justseed.it
ขนาดไฟล์ 25.88 KB
จำนวนการติดตั้ง 82
เวอร์ชันปัจจุบัน 0.4.8
อัปเดตครั้งล่าสุด 2016-10-11
วันที่เผยแพร่ 2016-10-11
คะแนน 4.76/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา touchtoner
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSIT Uploader",
    "description": "Upload selected magnet:\/torrents to justseed.it",
    "version": "0.4.8",
    "permissions": [
        "contextMenus",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage",
        "tabs"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "background": {
        "scripts": [
            "jsit_tools.js",
            "jsit_chrome_background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jsit_tools.js",
                "contentscript.js"
            ],
            "css": [
                "contentstyle.css"
            ]
        },
        {
            "matches": [
                "*:\/\/justseed.it\/*"
            ],
            "js": [
                "jsit_menu.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "*.png",
        "options.html",
        "jsit_tools.js",
        "injector.js"
    ]
}