├── .gitignore ├── .zap2xmlrc ├── LICENSE.txt ├── README.md ├── addon.xml ├── bin └── tv_grab_zap2xml ├── default.py ├── icon.png ├── resources ├── language │ └── English │ │ └── strings.xml └── settings.xml └── zap2xml.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/.gitignore -------------------------------------------------------------------------------- /.zap2xmlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/.zap2xmlrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/README.md -------------------------------------------------------------------------------- /addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/addon.xml -------------------------------------------------------------------------------- /bin/tv_grab_zap2xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/bin/tv_grab_zap2xml -------------------------------------------------------------------------------- /default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/default.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/icon.png -------------------------------------------------------------------------------- /resources/language/English/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/resources/language/English/strings.xml -------------------------------------------------------------------------------- /resources/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/resources/settings.xml -------------------------------------------------------------------------------- /zap2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edit4ever/script.module.zap2xml/HEAD/zap2xml.py --------------------------------------------------------------------------------