├── .gitignore ├── 128.png ├── 440x280.png ├── 640x400_1.png ├── 640x400_2.png ├── 640x400_3.png ├── LICENSE ├── README.md ├── privacytab.txt ├── src ├── add.js ├── decode.js ├── icon.png ├── jquery.min.1.3.js ├── manifest.json ├── option.js └── options.html └── toAria2.sublime-project /.gitignore: -------------------------------------------------------------------------------- 1 | /toAria2.sublime-workspace 2 | -------------------------------------------------------------------------------- /128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/128.png -------------------------------------------------------------------------------- /440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/440x280.png -------------------------------------------------------------------------------- /640x400_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/640x400_1.png -------------------------------------------------------------------------------- /640x400_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/640x400_2.png -------------------------------------------------------------------------------- /640x400_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/640x400_3.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/README.md -------------------------------------------------------------------------------- /privacytab.txt: -------------------------------------------------------------------------------- 1 | 此应用用于接管浏览器下载,发送到aria2服务器. 2 | -------------------------------------------------------------------------------- /src/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/src/add.js -------------------------------------------------------------------------------- /src/decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/src/decode.js -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/jquery.min.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/src/jquery.min.1.3.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/src/option.js -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/src/options.html -------------------------------------------------------------------------------- /toAria2.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostry/toAria2/HEAD/toAria2.sublime-project --------------------------------------------------------------------------------