├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── -------.md │ └── bug---.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── README_DEV.md ├── package.json ├── src ├── index.ts ├── util │ ├── CookieHelper.ts │ ├── SanityHelper.ts │ └── WidgetInjector.ts └── widget │ ├── HDVideoWidget.ts │ ├── LoggedInWidget.ts │ ├── VideoAddressWidget.ts │ ├── VipWidget.ts │ ├── WatchCountWidget.ts │ └── Widget.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/.github/ISSUE_TEMPLATE/-------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/.github/ISSUE_TEMPLATE/bug---.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/README.md -------------------------------------------------------------------------------- /README_DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/README_DEV.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/util/CookieHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/util/CookieHelper.ts -------------------------------------------------------------------------------- /src/util/SanityHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/util/SanityHelper.ts -------------------------------------------------------------------------------- /src/util/WidgetInjector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/util/WidgetInjector.ts -------------------------------------------------------------------------------- /src/widget/HDVideoWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/widget/HDVideoWidget.ts -------------------------------------------------------------------------------- /src/widget/LoggedInWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/widget/LoggedInWidget.ts -------------------------------------------------------------------------------- /src/widget/VideoAddressWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/widget/VideoAddressWidget.ts -------------------------------------------------------------------------------- /src/widget/VipWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/widget/VipWidget.ts -------------------------------------------------------------------------------- /src/widget/WatchCountWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/widget/WatchCountWidget.ts -------------------------------------------------------------------------------- /src/widget/Widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/src/widget/Widget.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuckSoft/91porn-utility/HEAD/tsconfig.json --------------------------------------------------------------------------------