Add Torrent To

Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.

Add Torrent To란 무엇입니까?

Add Torrent To은(는) gchristnsn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent."입니다.

확장 프로그램 스크린샷

screenshot

Add Torrent To 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Add Torrent To is a minimalist browser extension that allows to instantly begin a download of the torrent content into a configurable set of directories available from the browser context menu. It is useful for preventing clutter in the download directory.                    

확장 프로그램 기본 정보

이름 Add Torrent To Add Torrent To
ID jlbkggamnpibjmibgcohffcncainphbj
공식 URL https://chromewebstore.google.com/detail/add-torrent-to/jlbkggamnpibjmibgcohffcncainphbj
설명 Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.
파일 크기 237 KB
설치 횟수 2,342
현재 버전 0.4.4
최근 업데이트 2023-12-05
출시 날짜 2022-08-12
평점 4.50/5 총 2 개의 평점
개발자 gchristnsn
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gchristensen.github.io/torrent-add/
도움말 페이지 URL https://github.com/GChristensen/torrent-add/issues
개인정보 보호 정책 페이지 URL https://gchristensen.github.io/docs/chrome-privacy-policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Add Torrent To",
    "version": "0.4.4",
    "homepage_url": "https:\/\/gchristensen.github.io\/torrent-add\/",
    "description": "Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.",
    "icons": {
        "16": "ui\/icons\/logo16.png",
        "48": "ui\/icons\/logo48.png",
        "96": "ui\/icons\/logo96.png",
        "128": "ui\/icons\/logo128.png"
    },
    "background": {
        "service_worker": "background_worker.js",
        "type": "module"
    },
    "options_ui": {
        "page": "ui\/options.html",
        "browser_style": true
    },
    "permissions": [
        "storage",
        "contextMenus",
        "notifications",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "net_rules.json"
            }
        ]
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}