├── .github ├── ISSUE_TEMPLATE │ ├── -bug-report-bug--.md │ └── -new-feature------.md └── workflows │ ├── build.yml │ ├── docsDeploy.yml │ └── packageRelease.yml ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── images │ ├── 1.webp │ ├── 2.webp │ ├── 3.webp │ ├── 4.webp │ ├── config.webp │ ├── config2.webp │ └── soft │ │ ├── soft_01.webp │ │ └── soft_02.webp └── static │ ├── img │ ├── bg.jpg │ └── bg4.jpeg │ ├── import.html │ ├── js │ └── .gitignore │ └── query.html ├── docs ├── .vuepress │ ├── components │ │ └── Footer.vue │ ├── config.js │ └── public │ │ ├── CNAME │ │ └── img │ │ ├── 1.webp │ │ ├── 2.webp │ │ ├── 3.webp │ │ ├── 4.webp │ │ ├── 5.webp │ │ ├── 6.webp │ │ ├── chormeadd.jpg │ │ ├── chormecheck.jpg │ │ ├── chormepage.jpg │ │ ├── chormescucess.jpg │ │ ├── config.jpg │ │ ├── config2.webp │ │ ├── cxadd.png │ │ ├── cxpage.png │ │ ├── cxsuccess.png │ │ ├── cxtoken.png │ │ ├── entry.png │ │ ├── entry2.png │ │ ├── gfcheck.jpg │ │ ├── gfnoti.jpg │ │ ├── gfpage.jpg │ │ ├── gfsuccess.jpg │ │ ├── mozillaadd.jpg │ │ ├── mozillapage.jpg │ │ ├── mozillasuccess.jpg │ │ ├── reward.png │ │ ├── soft │ │ ├── soft_01.webp │ │ └── soft_02.webp │ │ ├── tamperadd.jpg │ │ ├── tamperpage.jpg │ │ ├── tampersuccess.jpg │ │ ├── tmpedit.png │ │ ├── tmpsuccess.png │ │ ├── tmptoken.png │ │ ├── token.png │ │ ├── unzip.png │ │ ├── wx.png │ │ ├── wxpublic.jpg │ │ ├── 扩展架构图.png │ │ └── 生命周期.png ├── 1-UserGuide │ ├── 1-1-chrome.md │ ├── 1-2-firefox.md │ ├── 1-3-tampermonkey.md │ ├── 1-4-config.md │ ├── 1-5-otherchorme.md │ ├── 1-6-gettoken.md │ ├── 1-7-easychorme.md │ ├── 1-8-moocchorme.md │ ├── README.md │ ├── featured.md │ └── qa.md ├── 3-Disclaimer │ └── README.md ├── Develop │ ├── Component.md │ ├── Platform.md │ ├── QuestionBank.md │ ├── README.md │ └── Utils.md ├── README.md └── en-us │ ├── 1-UserGuide │ ├── 1-0-developer.md │ ├── 1-1-chrome.md │ ├── 1-2-firefox.md │ ├── 1-3-tampermonkey.md │ └── README.md │ ├── 3-Disclaimer │ └── README.md │ └── README.md ├── jest.config.js ├── package.json ├── src ├── background.ts ├── config.ts ├── internal │ ├── app │ │ ├── mooc.ts │ │ ├── question.ts │ │ ├── task.ts │ │ ├── topic.ts │ │ └── vcode.ts │ ├── application.ts │ ├── pack-crx.ts │ ├── tg-bot.ts │ └── utils │ │ ├── config.ts │ │ ├── event.ts │ │ ├── hook.ts │ │ ├── log.ts │ │ ├── message.ts │ │ └── utils.ts ├── mooc.ts ├── mooc │ ├── chaoxing │ │ ├── course.ts │ │ ├── factory.ts │ │ ├── platform.ts │ │ ├── question.ts │ │ ├── read.ts │ │ ├── special.ts │ │ ├── task.ts │ │ ├── topic.ts │ │ ├── utils.ts │ │ ├── vcode.ts │ │ └── video.ts │ ├── course163 │ │ ├── course163.ts │ │ ├── platform.ts │ │ ├── question.ts │ │ └── task.ts │ ├── mooc.ts │ └── zhihuishu │ │ ├── exam.ts │ │ ├── platform.ts │ │ ├── utils │ │ └── css-tool.ts │ │ └── video.ts ├── start.ts ├── tampermonkey │ ├── course163-pack.ts │ ├── course163.js │ ├── cxmooc-pack.ts │ ├── cxmooc.js │ ├── zhihuishu-pack.ts │ └── zhihuishu.js ├── tools.d.ts └── views │ ├── common.ts │ ├── popup.html │ └── popup.ts ├── tests ├── hook.test.ts └── utils.test.ts ├── tsconfig.json ├── webpack.config.js ├── webpack.dev.js └── webpack.tampermonkey.js /.github/ISSUE_TEMPLATE/-bug-report-bug--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/.github/ISSUE_TEMPLATE/-bug-report-bug--.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-new-feature------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/.github/ISSUE_TEMPLATE/-new-feature------.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docsDeploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/.github/workflows/docsDeploy.yml -------------------------------------------------------------------------------- /.github/workflows/packageRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/.github/workflows/packageRelease.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/README.md -------------------------------------------------------------------------------- /dist/images/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/images/1.webp -------------------------------------------------------------------------------- /dist/images/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/images/2.webp -------------------------------------------------------------------------------- /dist/images/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/images/3.webp -------------------------------------------------------------------------------- /dist/images/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/images/4.webp -------------------------------------------------------------------------------- /dist/images/config.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/images/config.webp -------------------------------------------------------------------------------- /dist/images/config2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/images/config2.webp -------------------------------------------------------------------------------- /dist/images/soft/soft_01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/images/soft/soft_01.webp -------------------------------------------------------------------------------- /dist/images/soft/soft_02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/images/soft/soft_02.webp -------------------------------------------------------------------------------- /dist/static/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/static/img/bg.jpg -------------------------------------------------------------------------------- /dist/static/img/bg4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/static/img/bg4.jpeg -------------------------------------------------------------------------------- /dist/static/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/static/import.html -------------------------------------------------------------------------------- /dist/static/js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/static/js/.gitignore -------------------------------------------------------------------------------- /dist/static/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/dist/static/query.html -------------------------------------------------------------------------------- /docs/.vuepress/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/components/Footer.vue -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/CNAME: -------------------------------------------------------------------------------- 1 | cx-doc.xloli.top -------------------------------------------------------------------------------- /docs/.vuepress/public/img/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/1.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/2.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/3.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/4.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/5.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/6.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/chormeadd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/chormeadd.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/chormecheck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/chormecheck.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/chormepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/chormepage.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/chormescucess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/chormescucess.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/config.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/config2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/config2.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/cxadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/cxadd.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/cxpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/cxpage.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/cxsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/cxsuccess.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/cxtoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/cxtoken.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/entry.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/entry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/entry2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/gfcheck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/gfcheck.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/gfnoti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/gfnoti.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/gfpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/gfpage.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/gfsuccess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/gfsuccess.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/mozillaadd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/mozillaadd.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/mozillapage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/mozillapage.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/mozillasuccess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/mozillasuccess.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/reward.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/soft/soft_01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/soft/soft_01.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/soft/soft_02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/soft/soft_02.webp -------------------------------------------------------------------------------- /docs/.vuepress/public/img/tamperadd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/tamperadd.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/tamperpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/tamperpage.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/tampersuccess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/tampersuccess.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/tmpedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/tmpedit.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/tmpsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/tmpsuccess.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/tmptoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/tmptoken.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/token.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/unzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/unzip.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/wx.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/wxpublic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/wxpublic.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/扩展架构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/扩展架构图.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/生命周期.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/.vuepress/public/img/生命周期.png -------------------------------------------------------------------------------- /docs/1-UserGuide/1-1-chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/1-1-chrome.md -------------------------------------------------------------------------------- /docs/1-UserGuide/1-2-firefox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/1-2-firefox.md -------------------------------------------------------------------------------- /docs/1-UserGuide/1-3-tampermonkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/1-3-tampermonkey.md -------------------------------------------------------------------------------- /docs/1-UserGuide/1-4-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/1-4-config.md -------------------------------------------------------------------------------- /docs/1-UserGuide/1-5-otherchorme.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 其他浏览器的安装 3 | --- 4 | 5 | ## 待更新 6 | 7 | 由于世界线回溯被吃啦! 8 | -------------------------------------------------------------------------------- /docs/1-UserGuide/1-6-gettoken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/1-6-gettoken.md -------------------------------------------------------------------------------- /docs/1-UserGuide/1-7-easychorme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/1-7-easychorme.md -------------------------------------------------------------------------------- /docs/1-UserGuide/1-8-moocchorme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/1-8-moocchorme.md -------------------------------------------------------------------------------- /docs/1-UserGuide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/README.md -------------------------------------------------------------------------------- /docs/1-UserGuide/featured.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/featured.md -------------------------------------------------------------------------------- /docs/1-UserGuide/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/1-UserGuide/qa.md -------------------------------------------------------------------------------- /docs/3-Disclaimer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/3-Disclaimer/README.md -------------------------------------------------------------------------------- /docs/Develop/Component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/Develop/Component.md -------------------------------------------------------------------------------- /docs/Develop/Platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/Develop/Platform.md -------------------------------------------------------------------------------- /docs/Develop/QuestionBank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/Develop/QuestionBank.md -------------------------------------------------------------------------------- /docs/Develop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/Develop/README.md -------------------------------------------------------------------------------- /docs/Develop/Utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/Develop/Utils.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/en-us/1-UserGuide/1-0-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/en-us/1-UserGuide/1-0-developer.md -------------------------------------------------------------------------------- /docs/en-us/1-UserGuide/1-1-chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/en-us/1-UserGuide/1-1-chrome.md -------------------------------------------------------------------------------- /docs/en-us/1-UserGuide/1-2-firefox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/en-us/1-UserGuide/1-2-firefox.md -------------------------------------------------------------------------------- /docs/en-us/1-UserGuide/1-3-tampermonkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/en-us/1-UserGuide/1-3-tampermonkey.md -------------------------------------------------------------------------------- /docs/en-us/1-UserGuide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/en-us/1-UserGuide/README.md -------------------------------------------------------------------------------- /docs/en-us/3-Disclaimer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/en-us/3-Disclaimer/README.md -------------------------------------------------------------------------------- /docs/en-us/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/docs/en-us/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/package.json -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/internal/app/mooc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/app/mooc.ts -------------------------------------------------------------------------------- /src/internal/app/question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/app/question.ts -------------------------------------------------------------------------------- /src/internal/app/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/app/task.ts -------------------------------------------------------------------------------- /src/internal/app/topic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/app/topic.ts -------------------------------------------------------------------------------- /src/internal/app/vcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/app/vcode.ts -------------------------------------------------------------------------------- /src/internal/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/application.ts -------------------------------------------------------------------------------- /src/internal/pack-crx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/pack-crx.ts -------------------------------------------------------------------------------- /src/internal/tg-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/tg-bot.ts -------------------------------------------------------------------------------- /src/internal/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/utils/config.ts -------------------------------------------------------------------------------- /src/internal/utils/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/utils/event.ts -------------------------------------------------------------------------------- /src/internal/utils/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/utils/hook.ts -------------------------------------------------------------------------------- /src/internal/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/utils/log.ts -------------------------------------------------------------------------------- /src/internal/utils/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/utils/message.ts -------------------------------------------------------------------------------- /src/internal/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/internal/utils/utils.ts -------------------------------------------------------------------------------- /src/mooc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/course.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/course.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/factory.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/platform.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/question.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/read.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/special.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/special.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/task.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/topic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/topic.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/utils.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/vcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/vcode.ts -------------------------------------------------------------------------------- /src/mooc/chaoxing/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/chaoxing/video.ts -------------------------------------------------------------------------------- /src/mooc/course163/course163.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/course163/course163.ts -------------------------------------------------------------------------------- /src/mooc/course163/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/course163/platform.ts -------------------------------------------------------------------------------- /src/mooc/course163/question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/course163/question.ts -------------------------------------------------------------------------------- /src/mooc/course163/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/course163/task.ts -------------------------------------------------------------------------------- /src/mooc/mooc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/mooc.ts -------------------------------------------------------------------------------- /src/mooc/zhihuishu/exam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/zhihuishu/exam.ts -------------------------------------------------------------------------------- /src/mooc/zhihuishu/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/zhihuishu/platform.ts -------------------------------------------------------------------------------- /src/mooc/zhihuishu/utils/css-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/zhihuishu/utils/css-tool.ts -------------------------------------------------------------------------------- /src/mooc/zhihuishu/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/mooc/zhihuishu/video.ts -------------------------------------------------------------------------------- /src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/start.ts -------------------------------------------------------------------------------- /src/tampermonkey/course163-pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/tampermonkey/course163-pack.ts -------------------------------------------------------------------------------- /src/tampermonkey/course163.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/tampermonkey/course163.js -------------------------------------------------------------------------------- /src/tampermonkey/cxmooc-pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/tampermonkey/cxmooc-pack.ts -------------------------------------------------------------------------------- /src/tampermonkey/cxmooc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/tampermonkey/cxmooc.js -------------------------------------------------------------------------------- /src/tampermonkey/zhihuishu-pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/tampermonkey/zhihuishu-pack.ts -------------------------------------------------------------------------------- /src/tampermonkey/zhihuishu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/tampermonkey/zhihuishu.js -------------------------------------------------------------------------------- /src/tools.d.ts: -------------------------------------------------------------------------------- 1 | 2 | declare function CAT_click(el: Element): void; 3 | 4 | -------------------------------------------------------------------------------- /src/views/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/views/common.ts -------------------------------------------------------------------------------- /src/views/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/views/popup.html -------------------------------------------------------------------------------- /src/views/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/src/views/popup.ts -------------------------------------------------------------------------------- /tests/hook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/tests/hook.test.ts -------------------------------------------------------------------------------- /tests/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/tests/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.tampermonkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/cxmooc-tools/HEAD/webpack.tampermonkey.js --------------------------------------------------------------------------------