├── .SRCINFO ├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── cn_bug_report.yml │ ├── cn_feature_request.yml │ ├── cn_question.yml │ ├── en_bug_report.yml │ ├── en_feature_request.yml │ └── en_question.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── PKGBUILD ├── README.md ├── account_manager.py ├── block_domain.txt ├── bypass_token_limit.py ├── bypass_version.py ├── check_user_authorized.py ├── config.py ├── cursor-source-map └── 0.50.5 │ └── core │ ├── main.js.map │ └── vs │ └── workbench │ └── workbench.desktop.main.js.map ├── cursor_acc_info.py ├── cursor_auth.py ├── cursor_register_manual.py ├── delete_cursor_google.py ├── disable_auto_update.py ├── email_tabs ├── email_tab_interface.py └── tempmail_plus_tab.py ├── fill_missing_translations.py ├── get_user_token.py ├── images ├── cloudflare_2025-02-12_13-43-21.png ├── fix_2025-01-14_21-30-43.png ├── free_2025-01-14_14-59-15.png ├── locale_2025-01-15_13-40-08.png ├── logo.png ├── new107_2025-01-15_13-53-56.png ├── new_2025-02-27_10-42-44.png ├── new_2025-03-19_00-19-09.png ├── new_2025-03-22_19-53-10.png ├── pass_2025-02-08_21-48-36.png ├── paypal.png ├── pro_2025-01-11_00-50-40.png ├── pro_2025-01-11_00-51-07.png ├── pro_2025-01-11_16-24-03.png ├── pro_2025-01-11_22-33-09.gif ├── pro_2025-01-13_13-49-55.png ├── pro_2025-01-14_14-40-37.png ├── pro_2025-04-05_18-47-56.png ├── product_2025-04-16_10-40-21.png ├── pronew_2025-02-13_15-01-32.png ├── provi-code.jpg └── what_2025-01-13_13-32-54.png ├── locales ├── ar.json ├── bg.json ├── de.json ├── en.json ├── es.json ├── fr.json ├── it.json ├── ja.json ├── nl.json ├── pt.json ├── ru.json ├── tr.json ├── vi.json ├── zh_cn.json └── zh_tw.json ├── logo.py ├── main.py ├── manual_custom_auth.py ├── new_signup.py ├── oauth_auth.py ├── quit_cursor.py ├── requirements.txt ├── reset_machine_manual.py ├── restore_machine_id.py ├── scripts ├── install.ps1 ├── install.sh └── reset.ps1 ├── totally_reset_cursor.py └── utils.py /.SRCINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.SRCINFO -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cn_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.github/ISSUE_TEMPLATE/cn_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cn_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.github/ISSUE_TEMPLATE/cn_feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cn_question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.github/ISSUE_TEMPLATE/cn_question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/en_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.github/ISSUE_TEMPLATE/en_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/en_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.github/ISSUE_TEMPLATE/en_feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/en_question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.github/ISSUE_TEMPLATE/en_question.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/README.md -------------------------------------------------------------------------------- /account_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/account_manager.py -------------------------------------------------------------------------------- /block_domain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/block_domain.txt -------------------------------------------------------------------------------- /bypass_token_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/bypass_token_limit.py -------------------------------------------------------------------------------- /bypass_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/bypass_version.py -------------------------------------------------------------------------------- /check_user_authorized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/check_user_authorized.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/config.py -------------------------------------------------------------------------------- /cursor-source-map/0.50.5/core/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/cursor-source-map/0.50.5/core/main.js.map -------------------------------------------------------------------------------- /cursor-source-map/0.50.5/core/vs/workbench/workbench.desktop.main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/cursor-source-map/0.50.5/core/vs/workbench/workbench.desktop.main.js.map -------------------------------------------------------------------------------- /cursor_acc_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/cursor_acc_info.py -------------------------------------------------------------------------------- /cursor_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/cursor_auth.py -------------------------------------------------------------------------------- /cursor_register_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/cursor_register_manual.py -------------------------------------------------------------------------------- /delete_cursor_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/delete_cursor_google.py -------------------------------------------------------------------------------- /disable_auto_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/disable_auto_update.py -------------------------------------------------------------------------------- /email_tabs/email_tab_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/email_tabs/email_tab_interface.py -------------------------------------------------------------------------------- /email_tabs/tempmail_plus_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/email_tabs/tempmail_plus_tab.py -------------------------------------------------------------------------------- /fill_missing_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/fill_missing_translations.py -------------------------------------------------------------------------------- /get_user_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/get_user_token.py -------------------------------------------------------------------------------- /images/cloudflare_2025-02-12_13-43-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/cloudflare_2025-02-12_13-43-21.png -------------------------------------------------------------------------------- /images/fix_2025-01-14_21-30-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/fix_2025-01-14_21-30-43.png -------------------------------------------------------------------------------- /images/free_2025-01-14_14-59-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/free_2025-01-14_14-59-15.png -------------------------------------------------------------------------------- /images/locale_2025-01-15_13-40-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/locale_2025-01-15_13-40-08.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/new107_2025-01-15_13-53-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/new107_2025-01-15_13-53-56.png -------------------------------------------------------------------------------- /images/new_2025-02-27_10-42-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/new_2025-02-27_10-42-44.png -------------------------------------------------------------------------------- /images/new_2025-03-19_00-19-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/new_2025-03-19_00-19-09.png -------------------------------------------------------------------------------- /images/new_2025-03-22_19-53-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/new_2025-03-22_19-53-10.png -------------------------------------------------------------------------------- /images/pass_2025-02-08_21-48-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pass_2025-02-08_21-48-36.png -------------------------------------------------------------------------------- /images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/paypal.png -------------------------------------------------------------------------------- /images/pro_2025-01-11_00-50-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pro_2025-01-11_00-50-40.png -------------------------------------------------------------------------------- /images/pro_2025-01-11_00-51-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pro_2025-01-11_00-51-07.png -------------------------------------------------------------------------------- /images/pro_2025-01-11_16-24-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pro_2025-01-11_16-24-03.png -------------------------------------------------------------------------------- /images/pro_2025-01-11_22-33-09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pro_2025-01-11_22-33-09.gif -------------------------------------------------------------------------------- /images/pro_2025-01-13_13-49-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pro_2025-01-13_13-49-55.png -------------------------------------------------------------------------------- /images/pro_2025-01-14_14-40-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pro_2025-01-14_14-40-37.png -------------------------------------------------------------------------------- /images/pro_2025-04-05_18-47-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pro_2025-04-05_18-47-56.png -------------------------------------------------------------------------------- /images/product_2025-04-16_10-40-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/product_2025-04-16_10-40-21.png -------------------------------------------------------------------------------- /images/pronew_2025-02-13_15-01-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/pronew_2025-02-13_15-01-32.png -------------------------------------------------------------------------------- /images/provi-code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/provi-code.jpg -------------------------------------------------------------------------------- /images/what_2025-01-13_13-32-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/images/what_2025-01-13_13-32-54.png -------------------------------------------------------------------------------- /locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/ar.json -------------------------------------------------------------------------------- /locales/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/bg.json -------------------------------------------------------------------------------- /locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/de.json -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/en.json -------------------------------------------------------------------------------- /locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/es.json -------------------------------------------------------------------------------- /locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/fr.json -------------------------------------------------------------------------------- /locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/it.json -------------------------------------------------------------------------------- /locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/ja.json -------------------------------------------------------------------------------- /locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/nl.json -------------------------------------------------------------------------------- /locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/pt.json -------------------------------------------------------------------------------- /locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/ru.json -------------------------------------------------------------------------------- /locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/tr.json -------------------------------------------------------------------------------- /locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/vi.json -------------------------------------------------------------------------------- /locales/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/zh_cn.json -------------------------------------------------------------------------------- /locales/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/locales/zh_tw.json -------------------------------------------------------------------------------- /logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/logo.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/main.py -------------------------------------------------------------------------------- /manual_custom_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/manual_custom_auth.py -------------------------------------------------------------------------------- /new_signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/new_signup.py -------------------------------------------------------------------------------- /oauth_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/oauth_auth.py -------------------------------------------------------------------------------- /quit_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/quit_cursor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/requirements.txt -------------------------------------------------------------------------------- /reset_machine_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/reset_machine_manual.py -------------------------------------------------------------------------------- /restore_machine_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/restore_machine_id.py -------------------------------------------------------------------------------- /scripts/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/scripts/install.ps1 -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/reset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/scripts/reset.ps1 -------------------------------------------------------------------------------- /totally_reset_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/totally_reset_cursor.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeongpin/cursor-free-vip/HEAD/utils.py --------------------------------------------------------------------------------