trackerboxd

Adds torrent search shortcuts to Letterboxd

trackerboxd란 무엇입니까?

trackerboxd은(는) bozo22에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds torrent search shortcuts to Letterboxd"입니다.

확장 프로그램 스크린샷

screenshot

trackerboxd 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Before using, go to the extension settings and select the trackers you want to use. By default, no options are selected.
This extension is open source. Feel free to contribute!
https://github.com/bozo22/trackerboxd                    

확장 프로그램 기본 정보

이름 trackerboxd trackerboxd
ID jclinmfmhfdebkgfjojegbcnnhdfpfed
공식 URL https://chromewebstore.google.com/detail/trackerboxd/jclinmfmhfdebkgfjojegbcnnhdfpfed
설명 Adds torrent search shortcuts to Letterboxd
파일 크기 110 KB
설치 횟수 179
현재 버전 1.5.5
최근 업데이트 2023-12-04
출시 날짜 2021-06-12
평점 3.75/5 총 4 개의 평점
개발자 bozo22
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "trackerboxd",
    "version": "1.5.5",
    "description": "Adds torrent search shortcuts to Letterboxd",
    "icons": {
        "128": "icon.png",
        "512": "icon512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.letterboxd.com\/film\/*"
            ],
            "js": [
                "trackerboxd.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "*:\/\/*.letterboxd.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "trackerboxd",
        "default_popup": "options.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{df85b502-bef7-45a0-a9b3-dbcc57927a3d}"
        }
    },
    "web_accessible_resources": [
        "trackers.json"
    ]
}