├── .gitignore ├── LICENSE.txt ├── README.md ├── addon.xml ├── changelog.txt ├── default.py └── resources ├── __init__.py ├── fanart.jpg ├── icon.png ├── language ├── resource.language.de_de │ └── strings.po ├── resource.language.en_gb │ └── strings.po ├── resource.language.es_es │ └── strings.po ├── resource.language.fr_fr │ └── strings.po └── resource.language.pt_br │ └── strings.po ├── lib ├── __init__.py ├── api.py ├── controller.py ├── crunchyroll.py ├── globals.py ├── gui.py ├── model.py ├── router.py ├── utils.py ├── videoplayer.py ├── videostream.py └── view.py ├── media ├── screenshot-01.jpg ├── screenshot-02.jpg └── screenshot-03.jpg ├── modules ├── cloudscraper │ ├── __init__.py │ ├── captcha │ │ ├── 2captcha.py │ │ ├── 9kw.py │ │ ├── __init__.py │ │ ├── anticaptcha.py │ │ ├── capmonster.py │ │ ├── capsolver.py │ │ └── deathbycaptcha.py │ ├── cloudflare.py │ ├── exceptions.py │ ├── help.py │ ├── interpreters │ │ ├── __init__.py │ │ ├── chakracore.py │ │ ├── encapsulated.py │ │ ├── js2py.py │ │ ├── jsunfuck.py │ │ ├── native.py │ │ ├── nodejs.py │ │ └── v8.py │ └── user_agent │ │ ├── __init__.py │ │ └── browsers.json └── pyqrcode │ ├── __init__.py │ ├── builder.py │ └── tables.py ├── settings.xml └── skins └── default ├── 1080i ├── plugin-video-crunchyroll-activation.xml └── plugin-video-crunchyroll-skip.xml └── media └── smallbutton.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/README.md -------------------------------------------------------------------------------- /addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/addon.xml -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/changelog.txt -------------------------------------------------------------------------------- /default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/default.py -------------------------------------------------------------------------------- /resources/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /resources/fanart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/fanart.jpg -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/language/resource.language.de_de/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/language/resource.language.de_de/strings.po -------------------------------------------------------------------------------- /resources/language/resource.language.en_gb/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/language/resource.language.en_gb/strings.po -------------------------------------------------------------------------------- /resources/language/resource.language.es_es/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/language/resource.language.es_es/strings.po -------------------------------------------------------------------------------- /resources/language/resource.language.fr_fr/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/language/resource.language.fr_fr/strings.po -------------------------------------------------------------------------------- /resources/language/resource.language.pt_br/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/language/resource.language.pt_br/strings.po -------------------------------------------------------------------------------- /resources/lib/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /resources/lib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/api.py -------------------------------------------------------------------------------- /resources/lib/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/controller.py -------------------------------------------------------------------------------- /resources/lib/crunchyroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/crunchyroll.py -------------------------------------------------------------------------------- /resources/lib/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/globals.py -------------------------------------------------------------------------------- /resources/lib/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/gui.py -------------------------------------------------------------------------------- /resources/lib/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/model.py -------------------------------------------------------------------------------- /resources/lib/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/router.py -------------------------------------------------------------------------------- /resources/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/utils.py -------------------------------------------------------------------------------- /resources/lib/videoplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/videoplayer.py -------------------------------------------------------------------------------- /resources/lib/videostream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/videostream.py -------------------------------------------------------------------------------- /resources/lib/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/lib/view.py -------------------------------------------------------------------------------- /resources/media/screenshot-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/media/screenshot-01.jpg -------------------------------------------------------------------------------- /resources/media/screenshot-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/media/screenshot-02.jpg -------------------------------------------------------------------------------- /resources/media/screenshot-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/media/screenshot-03.jpg -------------------------------------------------------------------------------- /resources/modules/cloudscraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/__init__.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/captcha/2captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/captcha/2captcha.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/captcha/9kw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/captcha/9kw.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/captcha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/captcha/__init__.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/captcha/anticaptcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/captcha/anticaptcha.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/captcha/capmonster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/captcha/capmonster.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/captcha/capsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/captcha/capsolver.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/captcha/deathbycaptcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/captcha/deathbycaptcha.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/cloudflare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/cloudflare.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/exceptions.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/help.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/interpreters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/interpreters/__init__.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/interpreters/chakracore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/interpreters/chakracore.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/interpreters/encapsulated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/interpreters/encapsulated.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/interpreters/js2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/interpreters/js2py.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/interpreters/jsunfuck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/interpreters/jsunfuck.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/interpreters/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/interpreters/native.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/interpreters/nodejs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/interpreters/nodejs.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/interpreters/v8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/interpreters/v8.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/user_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/user_agent/__init__.py -------------------------------------------------------------------------------- /resources/modules/cloudscraper/user_agent/browsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/cloudscraper/user_agent/browsers.json -------------------------------------------------------------------------------- /resources/modules/pyqrcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/pyqrcode/__init__.py -------------------------------------------------------------------------------- /resources/modules/pyqrcode/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/pyqrcode/builder.py -------------------------------------------------------------------------------- /resources/modules/pyqrcode/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/modules/pyqrcode/tables.py -------------------------------------------------------------------------------- /resources/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/settings.xml -------------------------------------------------------------------------------- /resources/skins/default/1080i/plugin-video-crunchyroll-activation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/skins/default/1080i/plugin-video-crunchyroll-activation.xml -------------------------------------------------------------------------------- /resources/skins/default/1080i/plugin-video-crunchyroll-skip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/skins/default/1080i/plugin-video-crunchyroll-skip.xml -------------------------------------------------------------------------------- /resources/skins/default/media/smallbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smirgol/plugin.video.crunchyroll/HEAD/resources/skins/default/media/smallbutton.png --------------------------------------------------------------------------------