File size: 3,004 Bytes
762fa11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
export const manifest = {
    id: "community.torrent-stream",
    version: "1.0.0",
    catalogs: [],
    resources: ["stream"],
    types: ["movie", "series"],
    name: "Torrent Stream",
    logo: "https://upload.wikimedia.org/wikipedia/en/7/79/WebTorrent_logo.png",
    background: "https://i.etsystatic.com/35367581/r/il/53bf97/4463935832/il_fullxfull.4463935832_3k3g.jpg",
    description: "This addon enables Stremio to stream movies and shows from torrents",
    idPrefixes: ["tt"],
    behaviorHints: {
        // @ts-ignore
        configurable: true,
        configurationRequired: true,
    },
    config: [
        {
            title: "Enable Jackett search",
            key: "enableJackett",
            type: "checkbox",
        },
        {
            title: "Jackett API URL",
            key: "jackettUrl",
            type: "text",
        },
        {
            title: "Jackett API Key",
            key: "jackettKey",
            type: "password",
        },
        {
            title: "Enable nCore search",
            key: "enableNcore",
            type: "checkbox",
            default: "checked",
        },
        {
            title: "nCore username",
            key: "nCoreUser",
            type: "text",
        },
        {
            title: "nCore password",
            key: "nCorePassword",
            type: "password",
        },
        {
            title: "Enable iNSANE search",
            key: "enableInsane",
            type: "checkbox",
        },
        {
            title: "iNSANE username",
            key: "insaneUser",
            type: "text",
        },
        {
            title: "iNSANE password",
            key: "insanePassword",
            type: "password",
        },
        {
            title: "Enable iTorrent search",
            key: "enableItorrent",
            type: "checkbox",
        },
        {
            title: "Enable YTS search",
            key: "enableYts",
            type: "checkbox",
        },
        {
            title: "Enable EZTV search",
            key: "enableEztv",
            type: "checkbox",
        },
        {
            title: "Use titles for torrent search",
            key: "searchByTitle",
            type: "checkbox",
        },
        {
            title: "Do not show HDR results",
            key: "disableHdr",
            type: "checkbox",
        },
        {
            title: "Do not show HEVC results",
            key: "disableHevc",
            type: "checkbox",
        },
        {
            title: "Do not show 4K results",
            key: "disable4k",
            type: "checkbox",
        },
        {
            title: "Do not show CAM results",
            key: "disableCam",
            type: "checkbox",
            default: "checked",
        },
        {
            title: "Do not show 3D results",
            key: "disable3d",
            type: "checkbox",
            default: "checked",
        },
    ],
};
//# sourceMappingURL=manifest.js.map