TorrServer Adder

This extension allows you to add torrents from torrent trackers to TorrServer and play them using the system media player.

TorrServer Adderคืออะไร?

TorrServer Adder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย noperkot และคุณลักษณะหลักของมันคือ "This extension allows you to add torrents from torrent trackers to TorrServer and play them using the system media player."

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

screenshot
screenshot

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

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

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

                        Main functions:

• Adding/playing a torrent from the browser context menu

• Capture of magnet links (by clicking on the link, the action specified in the add-on settings is performed)

• Along with the torrent, the poster and the name of the torrent are transmitted (only for certain torrent trackers, the list in the help of the extension)

• Support for updatable torrents

• Profile system - the ability to store several independent sets of settings.

Supported versions of Topserver: MatriX, 1.2, 1.1

For the extension to work !!! A TORRSERVER IS NEEDED !!! running on a local machine or on a network.                    

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

ชื่อ TorrServer Adder TorrServer Adder
ID ihphookhabmjbgccflngglmidjloeefg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/torrserver-adder/ihphookhabmjbgccflngglmidjloeefg
คำอธิบาย This extension allows you to add torrents from torrent trackers to TorrServer and play them using the system media player.
ขนาดไฟล์ 102 KB
จำนวนการติดตั้ง 11,879
เวอร์ชันปัจจุบัน 2.0.4
อัปเดตครั้งล่าสุด 2024-02-04
วันที่เผยแพร่ 2021-02-04
คะแนน 4.91/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา noperkot
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Noperkot/TorrServerAdder
URL หน้าช่วยเหลือ https://4pda.ru/forum/index.php?showtopic=889960
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0.4",
    "name": "TorrServer Adder",
    "short_name": "TSA",
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "author": "Noperkot",
    "homepage_url": "https:\/\/github.com\/Noperkot\/TorrServerAdder",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "css": [
                "tsafont.css",
                "notifier.css"
            ],
            "js": [
                "notifier.js",
                "trackers.js",
                "content_scr.js"
            ]
        }
    ],
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "128": "icons\/icon128.png",
            "48": "icons\/icon48.png",
            "16": "icons\/icon16.png"
        },
        "default_popup": "options\/popup.html"
    },
    "background": {
        "service_worker": "background_M3.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "contextMenus",
        "downloads",
        "storage",
        "tabs",
        "declarativeNetRequest",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "wa\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "options_page": "options\/options.html",
    "minimum_chrome_version": "88"
}