├── .gitignore ├── DISCLAIMER.md ├── LICENSE ├── README.md ├── apps ├── Help.js ├── Local.js ├── Push.js ├── Search.js ├── Security.js ├── Setting.js └── Update.js ├── components ├── Config.js ├── Core.js ├── Version.js └── translate.js ├── config ├── config │ └── .keep └── config_default.yaml ├── guoba.support.js ├── index.js ├── model ├── init.js └── path.js ├── package.json ├── resources ├── common │ ├── common.css │ ├── font │ │ ├── HYWH-65W.woff │ │ ├── NZBZ.woff │ │ └── tttgbnumber.woff │ └── layout │ │ ├── default.html │ │ └── elem.html ├── failed.jpg ├── helpTemp │ ├── bg.jpg │ ├── helpTemp.css │ ├── helpTemp.html │ ├── icon.png │ └── main.png ├── listTemp │ ├── listTemp.css │ └── listTemp.html ├── readme │ └── girl.png └── translate │ ├── .keep │ └── db.text.json └── utils ├── store.js └── timer.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/README.md -------------------------------------------------------------------------------- /apps/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/apps/Help.js -------------------------------------------------------------------------------- /apps/Local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/apps/Local.js -------------------------------------------------------------------------------- /apps/Push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/apps/Push.js -------------------------------------------------------------------------------- /apps/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/apps/Search.js -------------------------------------------------------------------------------- /apps/Security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/apps/Security.js -------------------------------------------------------------------------------- /apps/Setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/apps/Setting.js -------------------------------------------------------------------------------- /apps/Update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/apps/Update.js -------------------------------------------------------------------------------- /components/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/components/Config.js -------------------------------------------------------------------------------- /components/Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/components/Core.js -------------------------------------------------------------------------------- /components/Version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/components/Version.js -------------------------------------------------------------------------------- /components/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/components/translate.js -------------------------------------------------------------------------------- /config/config/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/config/config_default.yaml -------------------------------------------------------------------------------- /guoba.support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/guoba.support.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/index.js -------------------------------------------------------------------------------- /model/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/model/init.js -------------------------------------------------------------------------------- /model/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/model/path.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/package.json -------------------------------------------------------------------------------- /resources/common/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/common/common.css -------------------------------------------------------------------------------- /resources/common/font/HYWH-65W.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/common/font/HYWH-65W.woff -------------------------------------------------------------------------------- /resources/common/font/NZBZ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/common/font/NZBZ.woff -------------------------------------------------------------------------------- /resources/common/font/tttgbnumber.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/common/font/tttgbnumber.woff -------------------------------------------------------------------------------- /resources/common/layout/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/common/layout/default.html -------------------------------------------------------------------------------- /resources/common/layout/elem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/common/layout/elem.html -------------------------------------------------------------------------------- /resources/failed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/failed.jpg -------------------------------------------------------------------------------- /resources/helpTemp/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/helpTemp/bg.jpg -------------------------------------------------------------------------------- /resources/helpTemp/helpTemp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/helpTemp/helpTemp.css -------------------------------------------------------------------------------- /resources/helpTemp/helpTemp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/helpTemp/helpTemp.html -------------------------------------------------------------------------------- /resources/helpTemp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/helpTemp/icon.png -------------------------------------------------------------------------------- /resources/helpTemp/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/helpTemp/main.png -------------------------------------------------------------------------------- /resources/listTemp/listTemp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/listTemp/listTemp.css -------------------------------------------------------------------------------- /resources/listTemp/listTemp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/listTemp/listTemp.html -------------------------------------------------------------------------------- /resources/readme/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/readme/girl.png -------------------------------------------------------------------------------- /resources/translate/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/translate/db.text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/resources/translate/db.text.json -------------------------------------------------------------------------------- /utils/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/utils/store.js -------------------------------------------------------------------------------- /utils/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erzaozi/exloli-plugin/HEAD/utils/timer.js --------------------------------------------------------------------------------