├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── dependabot.yml └── workflows │ ├── dependabot-auto-approve.yml │ ├── dependabot-auto-merge.yml │ ├── docker.yml │ ├── main.yml │ └── rsync.yml ├── .gitignore ├── CodeUpdateHandler.py ├── Dockerfile ├── LICENSE ├── README-lang ├── README-ar.md ├── README-bn.md ├── README-de.md ├── README-es.md ├── README-fr.md ├── README-hi.md ├── README-it.md ├── README-ja.md ├── README-ko.md ├── README-pt.md └── README-ru.md ├── README-zh.md ├── README.md ├── docker-compose.yml ├── docs ├── deploy.md ├── extension │ ├── README.md │ ├── faq.md │ ├── firefox-extension-setting.md │ ├── manual-chrome-extension-zip.md │ ├── manual-chrome-extension.md │ └── usage.md ├── guides │ ├── community.md │ ├── faq.md │ ├── getting-started.md │ ├── interface.md │ └── login-user.md ├── introduction.md ├── privacy-policy.md └── terms-of-service.md ├── docusaurus.config.js ├── i18n ├── ar │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── bn │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── de │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── en │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── es │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── fr │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── hi │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── it │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── ja │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── ko │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── pt │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── deploy.md │ │ │ ├── extension │ │ │ ├── README.md │ │ │ ├── faq.md │ │ │ ├── firefox-extension-setting.md │ │ │ ├── manual-chrome-extension-zip.md │ │ │ ├── manual-chrome-extension.md │ │ │ └── usage.md │ │ │ ├── guides │ │ │ ├── community.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── interface.md │ │ │ └── login-user.md │ │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ │ └── index.tsx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json └── ru │ ├── code.json │ ├── docusaurus-plugin-content-blog │ └── options.json │ ├── docusaurus-plugin-content-docs │ ├── current.json │ └── current │ │ ├── deploy.md │ │ ├── extension │ │ ├── README.md │ │ ├── faq.md │ │ ├── firefox-extension-setting.md │ │ ├── manual-chrome-extension-zip.md │ │ ├── manual-chrome-extension.md │ │ └── usage.md │ │ ├── guides │ │ ├── community.md │ │ ├── faq.md │ │ ├── getting-started.md │ │ ├── interface.md │ │ └── login-user.md │ │ └── introduction.md │ ├── docusaurus-plugin-content-pages │ └── index.tsx │ └── docusaurus-theme-classic │ ├── footer.json │ └── navbar.json ├── nginx.conf ├── package.json ├── plugins ├── instantpage.js └── piwik.js ├── sidebars.js ├── src ├── api.js ├── components │ ├── LocalizedNavbar │ │ ├── Navbar.en.js │ │ └── Navbar.zh.js │ ├── Svg │ │ ├── index.tsx │ │ └── styles.module.css │ └── svgIcons │ │ └── FavoriteIcon │ │ └── index.tsx ├── css │ └── custom.css ├── data │ ├── User.d.tsx │ ├── constants.tsx │ ├── default │ │ ├── favor_ar.json │ │ ├── favor_bn.json │ │ ├── favor_de.json │ │ ├── favor_en.json │ │ ├── favor_es.json │ │ ├── favor_fr.json │ │ ├── favor_hi.json │ │ ├── favor_it.json │ │ ├── favor_ja.json │ │ ├── favor_ko.json │ │ ├── favor_pt.json │ │ ├── favor_ru.json │ │ ├── favor_zh.json │ │ ├── other_ar.json │ │ ├── other_bn.json │ │ ├── other_de.json │ │ ├── other_en.json │ │ ├── other_es.json │ │ ├── other_fr.json │ │ ├── other_hi.json │ │ ├── other_it.json │ │ ├── other_ja.json │ │ ├── other_ko.json │ │ ├── other_pt.json │ │ ├── other_ru.json │ │ └── other_zh.json │ ├── prompt.json │ ├── prompt_ar.json │ ├── prompt_bn.json │ ├── prompt_de.json │ ├── prompt_en.json │ ├── prompt_es.json │ ├── prompt_fr.json │ ├── prompt_hi.json │ ├── prompt_it.json │ ├── prompt_ja.json │ ├── prompt_ko.json │ ├── prompt_pt.json │ ├── prompt_ru.json │ ├── prompt_zh.json │ ├── tags.tsx │ ├── users.ar.tsx │ ├── users.bn.tsx │ ├── users.de.tsx │ ├── users.en.tsx │ ├── users.es.tsx │ ├── users.fr.tsx │ ├── users.hi.tsx │ ├── users.it.tsx │ ├── users.ja.tsx │ ├── users.ko.tsx │ ├── users.pt.tsx │ ├── users.ru.tsx │ └── users.zh.tsx ├── googleAuthApi.js ├── hooks │ └── useCopyToClipboard.ts ├── pages │ ├── _components │ │ ├── AuthContext.tsx │ │ ├── CommentComponent │ │ │ ├── GiphySelector.tsx │ │ │ └── index.tsx │ │ ├── Comments.tsx │ │ ├── PromptPage.tsx │ │ ├── SearchBar.tsx │ │ ├── ShareButtons.tsx │ │ ├── ShowcaseCard │ │ │ ├── index.tsx │ │ │ ├── styles.module.css │ │ │ └── unifyPrompt.tsx │ │ ├── ShowcaseFilterToggle │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── ShowcaseTagSelect │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── ShowcaseTooltip │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── themeConfig.tsx │ │ └── user │ │ │ ├── UserFavorite.tsx │ │ │ ├── UserPrompts.tsx │ │ │ ├── UserStatus.tsx │ │ │ └── login.tsx │ ├── community-prompts.tsx │ ├── feedback.tsx │ ├── index.tsx │ ├── prompt │ │ ├── 1.tsx │ │ ├── 10.tsx │ │ ├── 100.tsx │ │ ├── 101.tsx │ │ ├── 102.tsx │ │ ├── 103.tsx │ │ ├── 104.tsx │ │ ├── 105.tsx │ │ ├── 106.tsx │ │ ├── 107.tsx │ │ ├── 108.tsx │ │ ├── 109.tsx │ │ ├── 11.tsx │ │ ├── 110.tsx │ │ ├── 111.tsx │ │ ├── 112.tsx │ │ ├── 113.tsx │ │ ├── 114.tsx │ │ ├── 115.tsx │ │ ├── 116.tsx │ │ ├── 117.tsx │ │ ├── 118.tsx │ │ ├── 119.tsx │ │ ├── 12.tsx │ │ ├── 120.tsx │ │ ├── 121.tsx │ │ ├── 122.tsx │ │ ├── 123.tsx │ │ ├── 124.tsx │ │ ├── 125.tsx │ │ ├── 126.tsx │ │ ├── 127.tsx │ │ ├── 128.tsx │ │ ├── 129.tsx │ │ ├── 13.tsx │ │ ├── 130.tsx │ │ ├── 131.tsx │ │ ├── 132.tsx │ │ ├── 133.tsx │ │ ├── 134.tsx │ │ ├── 135.tsx │ │ ├── 136.tsx │ │ ├── 137.tsx │ │ ├── 138.tsx │ │ ├── 139.tsx │ │ ├── 14.tsx │ │ ├── 140.tsx │ │ ├── 141.tsx │ │ ├── 142.tsx │ │ ├── 143.tsx │ │ ├── 144.tsx │ │ ├── 145.tsx │ │ ├── 146.tsx │ │ ├── 147.tsx │ │ ├── 148.tsx │ │ ├── 149.tsx │ │ ├── 15.tsx │ │ ├── 150.tsx │ │ ├── 151.tsx │ │ ├── 152.tsx │ │ ├── 153.tsx │ │ ├── 154.tsx │ │ ├── 155.tsx │ │ ├── 156.tsx │ │ ├── 157.tsx │ │ ├── 158.tsx │ │ ├── 159.tsx │ │ ├── 16.tsx │ │ ├── 160.tsx │ │ ├── 161.tsx │ │ ├── 162.tsx │ │ ├── 163.tsx │ │ ├── 164.tsx │ │ ├── 165.tsx │ │ ├── 166.tsx │ │ ├── 167.tsx │ │ ├── 168.tsx │ │ ├── 169.tsx │ │ ├── 17.tsx │ │ ├── 170.tsx │ │ ├── 171.tsx │ │ ├── 172.tsx │ │ ├── 173.tsx │ │ ├── 174.tsx │ │ ├── 175.tsx │ │ ├── 176.tsx │ │ ├── 177.tsx │ │ ├── 178.tsx │ │ ├── 179.tsx │ │ ├── 18.tsx │ │ ├── 180.tsx │ │ ├── 181.tsx │ │ ├── 182.tsx │ │ ├── 183.tsx │ │ ├── 184.tsx │ │ ├── 185.tsx │ │ ├── 186.tsx │ │ ├── 187.tsx │ │ ├── 188.tsx │ │ ├── 189.tsx │ │ ├── 19.tsx │ │ ├── 190.tsx │ │ ├── 191.tsx │ │ ├── 192.tsx │ │ ├── 193.tsx │ │ ├── 194.tsx │ │ ├── 195.tsx │ │ ├── 196.tsx │ │ ├── 197.tsx │ │ ├── 198.tsx │ │ ├── 199.tsx │ │ ├── 2.tsx │ │ ├── 20.tsx │ │ ├── 200.tsx │ │ ├── 201.tsx │ │ ├── 202.tsx │ │ ├── 203.tsx │ │ ├── 204.tsx │ │ ├── 205.tsx │ │ ├── 206.tsx │ │ ├── 207.tsx │ │ ├── 208.tsx │ │ ├── 209.tsx │ │ ├── 21.tsx │ │ ├── 210.tsx │ │ ├── 211.tsx │ │ ├── 212.tsx │ │ ├── 213.tsx │ │ ├── 214.tsx │ │ ├── 215.tsx │ │ ├── 216.tsx │ │ ├── 217.tsx │ │ ├── 218.tsx │ │ ├── 219.tsx │ │ ├── 22.tsx │ │ ├── 220.tsx │ │ ├── 221.tsx │ │ ├── 222.tsx │ │ ├── 223.tsx │ │ ├── 224.tsx │ │ ├── 225.tsx │ │ ├── 226.tsx │ │ ├── 227.tsx │ │ ├── 228.tsx │ │ ├── 229.tsx │ │ ├── 23.tsx │ │ ├── 230.tsx │ │ ├── 231.tsx │ │ ├── 232.tsx │ │ ├── 233.tsx │ │ ├── 234.tsx │ │ ├── 235.tsx │ │ ├── 236.tsx │ │ ├── 237.tsx │ │ ├── 238.tsx │ │ ├── 239.tsx │ │ ├── 24.tsx │ │ ├── 240.tsx │ │ ├── 241.tsx │ │ ├── 242.tsx │ │ ├── 243.tsx │ │ ├── 244.tsx │ │ ├── 245.tsx │ │ ├── 246.tsx │ │ ├── 247.tsx │ │ ├── 248.tsx │ │ ├── 249.tsx │ │ ├── 25.tsx │ │ ├── 250.tsx │ │ ├── 251.tsx │ │ ├── 252.tsx │ │ ├── 253.tsx │ │ ├── 254.tsx │ │ ├── 255.tsx │ │ ├── 256.tsx │ │ ├── 257.tsx │ │ ├── 258.tsx │ │ ├── 259.tsx │ │ ├── 26.tsx │ │ ├── 260.tsx │ │ ├── 261.tsx │ │ ├── 262.tsx │ │ ├── 263.tsx │ │ ├── 264.tsx │ │ ├── 265.tsx │ │ ├── 266.tsx │ │ ├── 267.tsx │ │ ├── 268.tsx │ │ ├── 269.tsx │ │ ├── 27.tsx │ │ ├── 270.tsx │ │ ├── 271.tsx │ │ ├── 272.tsx │ │ ├── 273.tsx │ │ ├── 274.tsx │ │ ├── 275.tsx │ │ ├── 276.tsx │ │ ├── 277.tsx │ │ ├── 278.tsx │ │ ├── 28.tsx │ │ ├── 29.tsx │ │ ├── 3.tsx │ │ ├── 30.tsx │ │ ├── 31.tsx │ │ ├── 32.tsx │ │ ├── 33.tsx │ │ ├── 34.tsx │ │ ├── 35.tsx │ │ ├── 36.tsx │ │ ├── 37.tsx │ │ ├── 38.tsx │ │ ├── 39.tsx │ │ ├── 4.tsx │ │ ├── 40.tsx │ │ ├── 41.tsx │ │ ├── 42.tsx │ │ ├── 43.tsx │ │ ├── 44.tsx │ │ ├── 45.tsx │ │ ├── 46.tsx │ │ ├── 47.tsx │ │ ├── 48.tsx │ │ ├── 49.tsx │ │ ├── 5.tsx │ │ ├── 50.tsx │ │ ├── 51.tsx │ │ ├── 52.tsx │ │ ├── 53.tsx │ │ ├── 54.tsx │ │ ├── 55.tsx │ │ ├── 56.tsx │ │ ├── 57.tsx │ │ ├── 58.tsx │ │ ├── 59.tsx │ │ ├── 6.tsx │ │ ├── 60.tsx │ │ ├── 61.tsx │ │ ├── 62.tsx │ │ ├── 63.tsx │ │ ├── 64.tsx │ │ ├── 65.tsx │ │ ├── 66.tsx │ │ ├── 67.tsx │ │ ├── 68.tsx │ │ ├── 69.tsx │ │ ├── 7.tsx │ │ ├── 70.tsx │ │ ├── 71.tsx │ │ ├── 72.tsx │ │ ├── 73.tsx │ │ ├── 74.tsx │ │ ├── 75.tsx │ │ ├── 76.tsx │ │ ├── 77.tsx │ │ ├── 78.tsx │ │ ├── 79.tsx │ │ ├── 8.tsx │ │ ├── 80.tsx │ │ ├── 81.tsx │ │ ├── 82.tsx │ │ ├── 83.tsx │ │ ├── 84.tsx │ │ ├── 85.tsx │ │ ├── 86.tsx │ │ ├── 87.tsx │ │ ├── 88.tsx │ │ ├── 89.tsx │ │ ├── 9.tsx │ │ ├── 90.tsx │ │ ├── 91.tsx │ │ ├── 92.tsx │ │ ├── 93.tsx │ │ ├── 94.tsx │ │ ├── 95.tsx │ │ ├── 96.tsx │ │ ├── 97.tsx │ │ ├── 98.tsx │ │ └── 99.tsx │ ├── reset-password.tsx │ ├── styles.module.css │ └── user │ │ ├── auth.tsx │ │ ├── favorite.tsx │ │ └── index.tsx └── utils │ ├── __tests__ │ └── jsUtils.test.ts │ ├── cacheJsonData.ts │ ├── colorUtils.ts │ ├── formatters.ts │ ├── jsUtils.ts │ ├── prismDark.mjs │ └── prismLight.mjs ├── static ├── .nojekyll ├── ads.txt └── img │ ├── 404.svg │ ├── favicon.ico │ ├── logo.png │ └── logo.svg └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: Create a report to help us improve. | 请提交遇到的问题或 Bug。 3 | title: "[Bug]" 4 | labels: 5 | - bug 6 | assignees: rockbenben 7 | body: 8 | - type: checkboxes 9 | id: checklist 10 | attributes: 11 | label: Checklist 12 | description: Make sure that you follow these statements. 13 | options: 14 | - label: I have searched [issues](https://github.com/rockbenben/ChatGPT-Shortcut/issues?q=) 15 | required: true 16 | 17 | - type: markdown 18 | attributes: 19 | value: | 20 | ## Describe the bug | 问题描述 21 | 22 | > If applicable, add screenshots and log to help explain your problem. 23 | > 如果方便的话,请添加屏幕截图以帮助解决你的问题。 24 | 25 | - type: textarea 26 | id: description 27 | attributes: 28 | label: Describe the bug | 问题描述 29 | description: A clear and concise description of what the bug is. | 请描述一下你遇到的问题。 30 | validations: 31 | required: true 32 | 33 | - type: textarea 34 | id: additional-context 35 | attributes: 36 | label: Additional context | 补充说明 37 | description: If you are not reporting something obvious, a minimal reproduction repo and related log is required. 38 | placeholder: Add any other context about the problem here. Especially the issue occurs in certain OS, browser or configuration. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: 使用说明 4 | url: https://newzone.top/posts/2023-02-27-chatgpt_shortcuts.html 5 | about: 页面底部可以留言 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- 1 | name: Feature request | 功能需求 2 | description: Suggest an idea for this project 3 | title: "[Feature]" 4 | labels: 5 | - enhancement 6 | assignees: rockbenben 7 | body: 8 | - type: checkboxes 9 | id: checklist 10 | attributes: 11 | label: Checklist 12 | description: Make sure that you follow these statements. 13 | options: 14 | - label: I searched existing issues and no one else requests similar feature. | 我搜索了现有的问题,没有人要求类似的功能。 15 | required: true 16 | 17 | - label: I think that 25%+ users are positive towards this feature. | 我认为 25% 以上的用户需要这个功能。 18 | required: true 19 | 20 | - type: textarea 21 | id: feature 22 | attributes: 23 | label: Describe the feature | 功能/建议 24 | description: What's it for and why you want? | 你想要新增或者改进什么功能? 25 | placeholder: A clear and concise description of what the feature is, and what it will enhance or solve. | 简明扼要地描述该功能是什么,以及它将增强或解决什么问题。 26 | validations: 27 | required: true 28 | 29 | - type: textarea 30 | id: additional-context 31 | attributes: 32 | label: Additional context | 补充说明 33 | placeholder: Add any other context or screenshots about the feature request here. | 这个功能有什么可以参考的资料或截图吗?是否可以列举一些。 34 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: github-actions # See documentation for possible values 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "weekly" 12 | open-pull-requests-limit: 99 13 | - package-ecosystem: "npm" 14 | directory: "/" 15 | schedule: 16 | interval: "daily" 17 | # Disable version updates for npm dependencies 18 | # https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates#overriding-the-default-behavior-with-a-configuration-file 19 | open-pull-requests-limit: 0 20 | -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-approve.yml: -------------------------------------------------------------------------------- 1 | name: Dependabot auto-approve 2 | on: pull_request 3 | 4 | permissions: 5 | pull-requests: write 6 | 7 | jobs: 8 | dependabot: 9 | runs-on: ubuntu-latest 10 | if: ${{ github.actor == 'dependabot[bot]' }} 11 | steps: 12 | - name: Dependabot metadata 13 | id: metadata 14 | uses: dependabot/fetch-metadata@v2 15 | with: 16 | github-token: "${{ secrets.GITHUB_TOKEN }}" 17 | - name: Approve a PR 18 | run: gh pr review --approve "$PR_URL" 19 | env: 20 | PR_URL: ${{github.event.pull_request.html_url}} 21 | GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- 1 | name: Dependabot auto-merge 2 | on: pull_request 3 | 4 | permissions: 5 | contents: write 6 | pull-requests: write 7 | 8 | jobs: 9 | dependabot: 10 | runs-on: ubuntu-latest 11 | if: ${{ github.actor == 'dependabot[bot]' }} 12 | steps: 13 | - name: Dependabot metadata 14 | id: metadata 15 | uses: dependabot/fetch-metadata@v2 16 | with: 17 | github-token: "${{ secrets.GITHUB_TOKEN }}" 18 | - name: Enable auto-merge for Dependabot PRs 19 | if: ${{contains(steps.metadata.outputs.dependency-names, 'my-dependency') && steps.metadata.outputs.update-type == 'version-update:semver-patch'}} 20 | run: gh pr merge --auto --merge "$PR_URL" 21 | env: 22 | PR_URL: ${{github.event.pull_request.html_url}} 23 | GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- 1 | name: 🐳 Build and Push Docker Image 2 | 3 | on: 4 | workflow_dispatch: 5 | release: 6 | types: [published] 7 | 8 | jobs: 9 | push_to_registry: 10 | name: Push Docker image to Docker Hub and GHCR 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: 🚚 Check out the repo 14 | uses: actions/checkout@v4 15 | 16 | - name: Set up QEMU 17 | uses: docker/setup-qemu-action@v3 18 | 19 | - name: Set up Docker Buildx 20 | uses: docker/setup-buildx-action@v3 21 | 22 | - name: 🔑 Log in to Docker Hub 23 | uses: docker/login-action@v3 24 | with: 25 | username: ${{ vars.DOCKERHUB_USERNAME }} 26 | password: ${{ secrets.DOCKERHUB_TOKEN }} 27 | 28 | - name: 🔐 Login to GitHub Container Registry 29 | uses: docker/login-action@v3 30 | with: 31 | registry: ghcr.io 32 | username: ${{ github.repository_owner }} 33 | password: ${{ secrets.GITHUB_TOKEN }} 34 | 35 | - name: 🏷️ Extract metadata (tags, labels) for Docker 36 | id: meta 37 | uses: docker/metadata-action@v5 38 | with: 39 | images: | 40 | ${{ vars.DOCKERHUB_USERNAME }}/chatgpt-shortcut 41 | ghcr.io/${{ github.repository_owner }}/chatgpt-shortcut 42 | tags: | 43 | type=ref,event=tag 44 | type=raw,value=latest 45 | 46 | # Build and push Docker image to both Docker Hub and GHCR 47 | - name: Build and push Docker image 48 | uses: docker/build-push-action@v6 49 | with: 50 | context: . 51 | platforms: linux/amd64,linux/arm64 52 | push: true 53 | tags: ${{ steps.meta.outputs.tags }} 54 | labels: ${{ steps.meta.outputs.labels }} 55 | cache-from: type=gha 56 | cache-to: type=gha,mode=max 57 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: 🚀 Deploy website on push 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | web-deploy: 10 | name: 🎉 Deploy 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: 🚚 Get latest code 14 | uses: actions/checkout@v4 15 | with: 16 | # 获取所有标记和分支的所有历史记录(updatetime 必须,否则每次都会变化) 17 | fetch-depth: 0 18 | # 如果你文档需要 Git 子模块,取消注释下一行 19 | # submodules: true 20 | 21 | - name: Setup Node.js 22 | uses: actions/setup-node@v4 23 | with: 24 | node-version: 20 25 | cache: yarn 26 | 27 | - name: Install dependencies 28 | run: yarn install --frozen-lockfile 29 | - name: Build website 30 | run: yarn build 31 | 32 | # - name: Deploy 33 | # uses: JamesIves/github-pages-deploy-action@v4 34 | # with: 35 | # # 这是文档部署到的分支名称 36 | # branch: gh-pages 37 | # folder: build 38 | 39 | # - name: 📂 Sync files 40 | # uses: SamKirkland/FTP-Deploy-Action@v4.3.4 41 | # with: 42 | # local-dir: build/ 43 | # server: ${{ secrets.ftp_host }} 44 | # username: ${{ secrets.ftp_username }} 45 | # password: ${{ secrets.ftp_password }} 46 | # port: ${{ secrets.ftp_port }} # 建议更改默认的 21 端口 47 | # timeout: 600000 48 | -------------------------------------------------------------------------------- /.github/workflows/rsync.yml: -------------------------------------------------------------------------------- 1 | name: Upstream Sync 2 | 3 | permissions: 4 | contents: write 5 | 6 | on: 7 | schedule: 8 | - cron: "0 0 * * *" # every day 9 | workflow_dispatch: 10 | 11 | jobs: 12 | sync_latest_from_upstream: 13 | name: Sync latest commits from upstream repo 14 | runs-on: ubuntu-latest 15 | if: ${{ github.event.repository.fork }} 16 | 17 | steps: 18 | # Step 1: run a standard checkout action 19 | - name: Checkout target repo 20 | uses: actions/checkout@v4 21 | 22 | # Step 2: run the sync action 23 | - name: Sync upstream changes 24 | id: sync 25 | uses: aormsby/Fork-Sync-With-Upstream-action@v3.4 26 | with: 27 | upstream_sync_repo: rockbenben/ChatGPT-Shortcut 28 | upstream_sync_branch: main 29 | target_sync_branch: main 30 | target_repo_token: ${{ secrets.GITHUB_TOKEN }} # automatically generated, no need to set 31 | 32 | # Set test_mode true to run tests instead of the true action!! 33 | test_mode: false 34 | 35 | - name: Sync check 36 | if: failure() 37 | run: | 38 | echo "::error::由于权限不足,导致同步失败(这是预期的行为),请前往仓库首页手动执行[Sync fork]。" 39 | echo "::error::Due to insufficient permissions, synchronization failed (as expected). Please go to the repository homepage and manually perform [Sync fork]." 40 | exit 1 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Production 5 | /build 6 | 7 | # Generated files 8 | .docusaurus 9 | .cache-loader 10 | 11 | # Misc 12 | .DS_Store 13 | .env.local 14 | .env.development.local 15 | .env.test.local 16 | .env.production.local 17 | 18 | npm-debug.log* 19 | yarn-debug.log* 20 | yarn-error.log* 21 | CHANGELOG.md 22 | 23 | /extension -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # 第一阶段: 构建静态网站 2 | FROM node:20-alpine AS builder 3 | 4 | # 设置工作目录 5 | WORKDIR /app 6 | 7 | # 复制项目中的 package.json 和 yarn.lock 到工作目录中 8 | COPY package.json yarn.lock ./ 9 | 10 | # 安装依赖包(仅安装生产环境依赖) 11 | RUN yarn install --frozen-lockfile --production --network-timeout 100000 12 | 13 | # 复制项目源代码到工作目录 14 | COPY . . 15 | 16 | # 构建静态站点 17 | RUN yarn build 18 | 19 | # 第二阶段: 使用 Nginx 作为静态服务器 20 | FROM nginx:stable-alpine 21 | 22 | # 删除默认的 Nginx 配置文件 23 | RUN rm /etc/nginx/conf.d/default.conf 24 | 25 | # 复制自定义 Nginx 配置文件 26 | COPY nginx.conf /etc/nginx/conf.d 27 | 28 | # 将第一阶段构建的 Docusaurus 静态站点文件复制到 Nginx 目录 29 | COPY --from=builder /app/build /usr/share/nginx/html 30 | 31 | # 暴露端口 3000 32 | EXPOSE 3000 33 | 34 | # 启动NGINX 35 | CMD ["nginx", "-g", "daemon off;"] 36 | 37 | # 容器构建&运行命令 38 | # docker build -t chatgpt-shortcut . 39 | # docker run -d -p 3000:3000 --name chatgpt-shortcut chatgpt-shortcut -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 rockbenben 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3.8" 2 | 3 | services: 4 | docsify: 5 | container_name: chatgpt-shortcut 6 | image: ghcr.io/rockbenben/chatgpt-shortcut:latest 7 | ports: 8 | - "3000:3000" 9 | restart: unless-stopped 10 | -------------------------------------------------------------------------------- /docs/extension/README.md: -------------------------------------------------------------------------------- 1 | # 安装插件 2 | 3 | AiShort(ChatGPT Shortcut)扩展兼容 Chrome、Edge、Firefox 及其他基于 Chromium 的浏览器。这款扩展不仅具备网页版 ChatGPT Shortcut 的功能,还增添了如侧边栏和自动激活窗口等独特特性。该扩展能够随 ChatGPT 或自定义页面自动启动,同时支持通过 `Alt+Shift+S` 快捷键手动激活。以下为下载渠道: 4 | 5 | - **Chrome**: [Chrome Web Store](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Microsoft Edge Addons](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [Firefox Browser ADD-ONS](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | - **国内下载**: [Alist 云盘](https://alist.newzone.top:9003/apps/ChatGPT%20Shortcut%20Extension);[蓝奏云](https://wwva.lanzouq.com/b01lsc9vi),密码:1qow 10 | 11 | 此外,我们还提供了油猴脚本——[**ChatGPT Shortcut Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere),该脚本允许用户自定义匹配域名,在任意网站上使用 AiShort 侧边栏。但需注意,由于 ChatGPT 页面的脚本内容注入限制,脚本的侧边栏功能在 ChatGPT 页面上是通过弹窗来激活的。 12 | -------------------------------------------------------------------------------- /docs/extension/faq.md: -------------------------------------------------------------------------------- 1 | # 插件常见问题 2 | 3 | ## ChatGPT 页面限制 4 | 5 | ChatGPT 对扩展嵌入的页面设置了多项权限限制,因此不支持使用 Google 授权进行登录。这意味着用户必须使用账号和密码进行登录。 6 | 7 | 如果你的账户最初是通过 Google 授权创建的,你可以利用「忘记密码」功能来设置新的密码。这样做将确保您能够在 ChatGPT 的嵌入页面中顺利登录。 8 | 9 | ## 内容屏蔽提示 10 | 11 | 使用帐号密码登录后,页面有时可能会出现「该内容被屏蔽了」的提示。遇到这种情况时,通常只需简单**刷新页面**,就可以解决问题,页面将恢复到正常的登录状态。此外,一旦登录成功,除非您主动登出,否则登录状态通常会保持较长时间,因此不必过于担心此类提示频繁出现。 12 | 13 | 需要注意的是,在 ChatGPT 的集成页面内切换语言时,可能也会触发「该内容被屏蔽了」的提示。因此,建议你通过扩展的设置项来进行语言切换,而不是直接在集成页面内操作。这样可以避免不必要的错误提示。 14 | -------------------------------------------------------------------------------- /docs/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Firefox 插件设置 2 | 3 | 使用 Firefox 插件前,推荐按以下两步进行设置。 4 | 5 | ## 1. 固定扩展与访问设置 6 | 7 | 首先,在 Firefox 工具栏上选择“固定 ChatGPT Shortcut 扩展”(Pin to Toolbar)。然后,进入扩展中心,找到 ChatGPT Shortcut 扩展条目并选择“选项”(Options)。进入扩展的设置界面。具体步骤如下图所示: 8 | 9 | ![Firefox settings](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. 授权扩展运行 12 | 13 | 其次,为确保扩展在 ChatGPT、Gemini 等网站上正常运行,您需要在这些网站上右键点击扩展图标,选择“始终允许在此网站上运行”(Always allow on ***)。此操作将授予扩展在指定域名上添加侧边栏的权限。 14 | 15 | ![Firefox Extension Permission](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | 安装成功后,可查看[插件使用教程](./usage.md)。 18 | -------------------------------------------------------------------------------- /docs/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Chrome ZIP 插件本地安装指南 2 | 3 | ## 下载插件 4 | 5 | 下载 ChatGPT Shortcut 插件 Zip 安装包(ChatGPT_Shortcut-zip-3.x.x.zip),并解压。(解压后的文件夹需要一直保留在电脑中,所以记得解压到一个永久的位置哦) 6 | 7 | - **GitHub**: [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 8 | - **国内下载**: [Alist 云盘](https://alist.newzone.top:9003/apps/ChatGPT%20Shortcut%20Extension);[蓝奏云](https://wwva.lanzouq.com/b01lsc9vi),密码:1qow 9 | 10 | ## 开启开发者模式 11 | 12 | 打开 chrome 的「管理扩展程序」页面,并打开「开发者模式」。 13 | 14 | 复制以下地址粘贴到浏览器地址栏,按回车打开。在页面右上角开启「开发者模式」。 15 | 16 | ```txt 17 | chrome://extensions 18 | ``` 19 | 20 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 21 | 22 | ## 安装插件 23 | 24 | 将解压出的文件夹拖入到扩展程序页面,即可完成安装。 25 | 26 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 27 | 28 | 安装成功后,可查看[插件使用教程](./usage.md)。 29 | -------------------------------------------------------------------------------- /docs/extension/manual-chrome-extension.md: -------------------------------------------------------------------------------- 1 | # Chrome CRX 插件本地安装指南 2 | 3 | ## 下载 CRX 安装包 4 | 5 | 下载 ChatGPT Shortcut crx 安装包(ChatGPT_Shortcut-crx-3.x.x.zip),并解压(crx 文件在解压的文件夹里)。 6 | 7 | - **GitHub**: [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 8 | - **国内下载**: [Alist 云盘](https://alist.newzone.top:9003/apps/ChatGPT%20Shortcut%20Extension);[蓝奏云](https://wwva.lanzouq.com/b01lsc9vi),密码:1qow 9 | 10 | ![](https://img.newzone.top/2024-08-12-21-47-10.png?imageMogr2/format/webp) 11 | 12 | ## 开启开发者模式 13 | 14 | 打开 chrome 的「管理扩展程序」页面,并打开「开发者模式」。 15 | 16 | 复制以下地址粘贴到浏览器地址栏,按回车打开。在页面右上角开启「开发者模式」。 17 | 18 | ```txt 19 | chrome://extensions 20 | ``` 21 | 22 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 23 | 24 | ## 安装插件 25 | 26 | 安装 ChatGPT Shortcut 插件(注意⚠️:需要拖入 .crx 文件,不要点击【加载已解压的扩展程序】) 27 | 28 | ![](https://img.newzone.top/2024-08-12-22-16-38.png?imageMogr2/format/webp) 29 | 30 | 安装成功后,可查看[插件使用教程](./usage.md)。 31 | 32 | ## 安装遇到了问题? 33 | 34 | 1. Windows 用户请检查是否已经解压缩了下载安装包(而不是双击打开)? 35 | 36 | 2. 是否已经开启了「开发者模式」?如果没有,请参考第二步的操作。 37 | 38 | 3. 是否是将 crx 文件拖入到「扩展程序」页面?注意⚠️:不要点击【加载已解压的扩展程序】,必须要拖入 crx 文件。 39 | 40 | 4. 浏览器不允许安装 crx 文件?尝试安装 zip 文件吧![点击此处查看 zip 安装教程](./manual-chrome-extension-zip.md)。 41 | -------------------------------------------------------------------------------- /docs/extension/usage.md: -------------------------------------------------------------------------------- 1 | # 如何使用浏览器扩展? 2 | 3 | ChatGPT Shortcut 支持 13 种主流语言,扩展语言将根据你的浏览器环境自动设置。扩展中的 ChatGPT 内嵌页面和侧边栏语言也会跟随这一设置。请注意,为避免触发第三方网站的权限警示,**不要在内嵌页面中更换语言**。 4 | 5 | ![](https://img.newzone.top/2023-12-23-12-04-29.png?imageMogr2/format/webp) 6 | 7 | ## AiShort 侧边栏 8 | 9 | 启用 AiShort 侧边栏后,你会在支持网页的右下角看到一个绿色图标开关。点击此图标,便可开启或关闭侧边栏。目前默认支持 ChatGPT、Gemini、Claude siliconflow、文心一言。若选择“自动激活侧边栏”,则在访问这些支持的网站时,侧边栏会自动打开。 10 | 11 | ![](https://img.newzone.top/2023-12-23-04-16-15.gif?imageMogr2/format/webp) 12 | 13 | 如果你想在其他网站上使用 AiShort 侧边栏,请安装 [ChatGPT Shortcut Anywhere](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere) 脚本。请注意,为避免功能重叠和潜在的冲突,ChatGPT Shortcut Anywhere 脚本在扩展默认支持的网站上不会生效。 14 | 15 | ## 内置主页 16 | 17 | 启用内置主页功能后,ChatGPT 网页版左上角将出现一个内置主页按钮。点击后,AiShort 页面将替代 ChatGPT 应用界面。 18 | 19 | ![](https://img.newzone.top/ai/2023-12-22-19-40-15.png?imageMogr2/format/webp) 20 | 21 | ## 独立窗口模式 22 | 23 | 启用独立窗口模式后,扩展界面将以独立窗口形式持久显示,便于多任务操作。你可以在扩展设置中设置自动激活网站,当浏览器访问这些网站时,AiShort 窗口将自动激活。 24 | 25 | ![](https://img.newzone.top/2023-12-23-12-07-09.png?imageMogr2/format/webp) 26 | 27 | ## 自动激活窗口 28 | 29 | 在扩展设置中,你可以指定哪些网站会自动激活 AiShort 独立窗口。 30 | 31 | ![](https://img.newzone.top/2023-12-23-12-09-51.png?imageMogr2/format/webp) 32 | 33 | ## 热键激活 34 | 35 | 使用 `Alt+Shift+S` 快捷键可以直接激活 AiShort 窗口,无论是弹窗模式还是独立窗口模式。 36 | -------------------------------------------------------------------------------- /docs/guides/community.md: -------------------------------------------------------------------------------- 1 | # 社区提示词 2 | 3 | 社区提示词版块展示的是由网友们分享和上传的自定义提示词。这一板块旨在鼓励创意的交流与灵感的碰撞,让每位用户都能在这里找到灵感,并分享自己独到的创意。您不仅可以将自己的提示词分享到公开页面,还可以浏览其他人分享的提示词,从中获取灵感。 4 | 5 | ## 排序和投票 6 | 7 | 社区提示词页面提供了发布时间、赞/踩投票排序以及关键词搜索等多种选项,方便用户自由地筛选和查找社区中的提示词。 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | 赞/踩投票机制是用于决定哪些提示词会显示在主页的重要方式。这个机制旨在提升内容的质量和相关性,通过用户的直接参与筛选出社区认为有价值的提示词。对于那些被认为低质量的提示词,您可以通过**点踩来表达不满**。一旦某个提示词获得的踩数达到一定数量,它就会在公开页面上被隐藏,以确保展示给大家的都是高质量的内容。 12 | 13 | 投票功能仅对登录用户开放,以保证投票的真实性和有效性。每位用户对同一提示词的投票将以最近一次为准,确保了投票结果的准确反映用户当前的意见。 14 | 15 | ## 私密提示词 16 | 17 | 如果您有一些不想公开的创意或想法,社区也提供了私密提示词的选项。在提交或更新提示词时,您可以选择是否与社区分享。这样,您就可以在需要时保存私密提示词,同时也能在希望分享时与大家一起交流灵感。 18 | 19 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 20 | 21 | 我们诚挚地邀请您积极分享自己的创意提示词,通过赞/踩投票机制共同维护社区内容的高质量。您的每一次参与和贡献都是推动社区不断成长和进步的关键力量。让我们一起创造一个充满创意、活力、并且彼此支持的提示词社区环境。 22 | -------------------------------------------------------------------------------- /docs/guides/faq.md: -------------------------------------------------------------------------------- 1 | # 常见问题 2 | 3 | ## 为什么提示词用英文? 4 | 5 | AiShort 是为方便非英文母语人士使用 ChatGPT 而创建的。然而,提示词却全部是英文。这是因为相较于其他语言,ChatGPT 对英文的理解更为出色。即使是中国第一个对话式大型语言模型 MOSS,也承认 MOSS 的英文回答水平比中文高。因此建议使用英文提示词。(MOSS 已不对外开放) 6 | 7 | 虽然使用非英文提示词可能会得到不错的结果,但是当你再次输入相同的非英文提示时,结果可能会大相径庭。因为 ChatGPT 对非英文的理解每次都不同,所以建议大家在输入生产力型提示词时使用英文提示词,以保证输出效果。此外,英文提示词带来的回复也很可能是英文的。你可以在提示词结尾添加 `respond in Chinese`,将回复指定为中文。如果你的母语是其他语言,请将 "Chinese" 更改为你的母语。 8 | 9 | ## 每次都要输入 Prompt? 10 | 11 | API 中可以将提示词设为「system prompt」,这样后续就不需要输入提示词了,ChatGPT 会按照 system prompt 来执行操作。 12 | 13 | 在网页版 ChatGPT 中,如果没有切换主提示词,只需用引号将后续回复内容框选即可,这样就不需要每次都输入提示词。当回复内容不符合提示词要求时,说明 ChatGPT 已经忘记了提示词,此时需要重新输入提示词以唤醒它。另外,每个对话的链接都是唯一的,你可以将常用的对话保存为书签,以便日后使用。 14 | 15 | ## GPTs 与提示词的区别 16 | 17 | **GPTs** 功能允许用户通过定制的输入文本指令与模型进行交互。这些指令的目的是引导模型生成与用户需求紧密相关的输出。因此,这些 **GPTs 输入指令在功能上等同于提示词**。 18 | 19 | 从应用实践来看,这些 GPTs 输入指令实质上充当了系统内置的提示词角色。它们不仅指引模型生成特定反应,也体现了用户对模型预期行为的控制与指导。实际上,社区中许多提示词都源于 **GPTs 内置指令**。 20 | 21 | ## 输入法搜索延迟 22 | 23 | AI Short 网页版通过手动搜索实现无延迟搜索,而 Docker 或扩展版本采用自动搜索,存在 800 毫秒的延迟。 24 | 25 | 此问题源于扩展搜索功能基于 Docusaurus 的 showcase,存在 PC 端输入法焦点丢失问题。向 Docusaurus 反馈后,对方表示会尝试修复和 `FWIW, you should not be using Chinese anyway, since the showcase is not localized`。但问题始终没有解决。因此,我将搜索组件分为移动端和 PC 端两类。移动端搜索逻辑保持不变,而屏幕宽度阈值 768px 以上的 PC 端浏览引入 `debounce` 函数解决输入法问题。但这在 PC 端产生两个问题:一是非英文输入需在 800 毫秒内完成;二是 PC 端搜索刷新从即时变为 800 毫秒延迟。若你有更好的解决方案,欢迎提供反馈。 26 | 27 | ## 输出虚假信息 28 | 29 | ChatGPT 虽然非常强大,但并不是万能的。有时它会输出虚假信息。例如,当我需要将上百条信息录入到 AiShort 中时,我让 ChatGPT 按指定格式转换数据。但是在转换过程中,我发现其中一些信息被 ChatGPT 误写。例如,在文本中一条标签是 `movie critic`,而 ChatGPT 将其更改为 `film critic`。尽管这在文本中不会造成什么影响,但放在代码中会报错。因此,在使用 ChatGPT 时,务必检查其输出内容。 30 | 31 | ## 提示词不好用? 32 | 33 | 如果你正在进行摘要总结,可利用 GPT 对原有回答进行再次优化,以提升回答的准确度。此外,提示词不仅适用于工作生产,更重要的是,它们能够激发思维,帮助你从多角度思考问题,并解决思考过程中容易忽视的问题。 34 | 35 | AI Short 的所有提示词都来自互联网,并将定期更新提示词库。尽管每个提示词都经历了多轮测试,但其实际效果可能会因用户需求而有所不同。如你发现任何错误、拥有创新想法或发现有用的提示词,欢迎通过[反馈](/feedback)告知或在社区中分享。 36 | -------------------------------------------------------------------------------- /docs/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # 开始上手 2 | 3 | 使用 AiShort,只需将选中的提示词复制到任意 AI 对话模型中,即可获取指定方向的输出。以下是具体步骤: 4 | 5 | 1. 搜索或选择你想要的提示词,然后点击提示词上的复制按钮。 6 | 2. 将提示词复制到 ChatGPT、Gemini 或任意 AI 对话模型中。 7 | 3. 根据对话提示,输入你的要求。 8 | 9 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 10 | 11 | ## 常用 AI 模型 12 | 13 | - ChatGPT:https://chatgpt.com 14 | - Gemini: https://gemini.google.com/app 15 | - Claude: https://claude.ai/chats 16 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 17 | - Kimi:https://kimi.moonshot.cn/ 18 | - 豆包:https://www.doubao.com/chat/ 19 | - 文心一言:https://yiyan.baidu.com 20 | - 智谱清言:https://chatglm.cn/detail 21 | - 腾讯元宝:https://yuanbao.tencent.com/chat 22 | - 讯飞星火:https://xinghuo.xfyun.cn/ 23 | - 百川智能:https://ying.baichuan-ai.com/chat 24 | 25 | ## 第三方 API 集成 26 | 27 | - OpenRouter: https://openrouter.ai/chat 28 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 29 | - grog: https://groq.com/ 30 | -------------------------------------------------------------------------------- /docs/guides/interface.md: -------------------------------------------------------------------------------- 1 | # 界面说明 2 | 3 | AiShort 页面为用户提供了一个直观的界面来浏览和筛选提示词,以便找到最适合自己需求的内容。页面主要由标签区、搜索区和提示词展示区三部分组成,旨在为用户提供一个高效、直观的搜索体验。 4 | 5 | ![](https://img.newzone.top/2024-03-07-04-56-01.png?imageMogr2/format/webp) 6 | 7 | ## 🏷︎ 标签筛选 8 | 9 | 标签区便于用户根据提示词的领域和功能进行筛选,满足不同的场景和需求。通过右上方的「标签筛选规则切换」按钮,用户可以实现更精细的多标签筛选。默认的筛选规则为 OR,即展示选中任一标签下的提示词。切换至 AND 规则时,则仅展示同时具备所有选中标签的提示词。 10 | 11 | ![](https://img.newzone.top/2023-02-28-10-31-01.png?imageMogr2/format/webp) 12 | 13 | ## 🔍 关键词搜索 14 | 15 | 关键词搜索功能支持用户对提示词的标题、简介、内容及其母语翻译进行搜索。输入关键词后,展示区会即时更新以显示符合条件的提示词。如果已有标签选中,搜索范围则限定在这些标签下。在 PC 端,搜索结果会在输入停止后 800 毫秒刷新;而移动端则支持即时刷新。 16 | 17 | ![](https://img.newzone.top/2023-02-28-10-31-10.png?imageMogr2/format/webp) 18 | 19 | 在你登录后,搜索范围将包括你提交和收藏的提示词。 20 | 21 | ![](https://img.newzone.top/2024-08-12-20-38-27.png?imageMogr2/format/webp) 22 | 23 | ## 🔬 展示区复制 24 | 25 | 在经过标签筛选和关键词搜索后,点击提示词卡片右上方的「复制」按钮,即可获取所需的提示词。将这些提示词粘贴到 ChatGPT 或相应的模型界面中,即可针对特定领域获取回复。若提示词的母语备注未能清晰说明,用户可通过点击卡片右下方的链接查看原始网页以获得更多信息。 26 | 27 | ![](https://img.newzone.top/2023-06-11-17-10-37.png?imageMogr2/format/webp) 28 | 29 | ## 💬 语言切换 30 | 31 | 默认情况下,提示词内容以英文展示。对于使用非英文界面的用户,可以通过点击提示词内容来切换至母语释义,再次点击则可切回英文。请注意,语言切换功能仅对提示词文本区域的点击有效。 32 | 33 | ![中英文切换](https://img.newzone.top/chatgptshortcut_encn.gif?imageMogr2/format/webp) 34 | 35 | 若希望提示词默认以您的母语显示,可点击标签区右上方的 `切换 Prompt 语言` 按钮进行设置。需要注意,即使在母语界面,复制功能依然只针对英文提示词。 36 | 37 | ## 🔥 热门排序 38 | 39 | 页面将根据提示词的使用次数进行排序,以帮助用户快速发现当前最受欢迎的提示词。 40 | 41 | 提示词的标签排序也会根据其热度值进行调整,而这些热度值会定期更新,以确保反映出社区的最新偏好和趋势。 42 | -------------------------------------------------------------------------------- /docs/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # 收藏与提交提示词 2 | 3 | 登录后,你可以自由添加或删除收藏的提示词,或添加个人提示词。 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## 收藏提示词 10 | 11 | ### 添加收藏 12 | 13 | 登录后,系统默认的收藏标签将被移除,提示词旁边将显示「收藏」按钮。之后,你收藏或取消收藏时,都将实时显示收藏状态的提示。 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### 移除收藏 18 | 19 | 点击收藏提示词右侧的爱心图标,即可将其移除出收藏。 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## 添加自定义提示词 24 | 25 | 提交提示词后,提示词将显示在「我的提示词」标签中。 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: / 3 | --- 4 | 5 | # 介绍 6 | 7 | AiShort 提供了一份简洁易用的 AI 指令列表,旨在帮助用户,即使是那些不熟悉提示词知识的人,也能轻松地通过筛选和查询找到适用于各种场景的提示词,从而提升个人的生产力。 8 | 9 | 🚀 **一键提示词**:我们精选了各类专业提示词,您只需一键操作,即可将其发送给 ChatGPT 等 AI 语言模型,获得期望的输出结果。 10 | 11 | 💻 **提升生产力**:通过使用经过优化的提示词,您将获得更精确、更实用的反馈,有效提升您的工作和学习效率。 12 | 13 | 🌍 **非英语优化**:我们为英文提示词提供了 12 种全球主流语言的翻译,并支持默认使用您的母语回复,极大方便了非英语母语用户的理解和使用。 14 | 15 | 💾 **收藏提示词**:您可以方便地收藏、编辑和管理您喜欢的提示词,以便日后使用。 16 | 17 | 🌐 **分享提示词**:分享您最喜爱的提示词,与其他用户协作,共同激发更多创意和灵感。 18 | 19 | 🗳️ **社区投票**:与 Product Hunt 或 Reddit 类似,平台由社区驱动,最佳提示词将推送至首页。 20 | 21 | 📦 **开箱即用**:只需访问 https://www.aishort.top/ ,即可开始使用。 22 | 23 | AiShort 的提示词来源包括网络精选、社区分享以及 [Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts)。如需了解本项目的开发背景和初衷,你可以阅读 [AiShort 开发博客](https://newzone.top/posts/2023-02-27-chatgpt_shortcuts.html)。 24 | 25 | 欢迎加入我们的 Discord、QQ 社区,一起交流想法和反馈。 26 | 27 | 28 | chat on Discord 29 | 30 | 31 | ![](https://img.newzone.top/qq736094782.jpg?imageMogr2/thumbnail/300x/format/webp) 32 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # تثبيت الامتداد 2 | 3 | AiShort (ChatGPT Shortcut) هو امتداد للمتصفح متوافق مع Chrome وEdge وFirefox والمتصفحات الأخرى المستندة إلى Chromium. لا يوفر هذا الامتداد وظائف إصدار الويب من ChatGPT Shortcut فحسب، بل يتميز أيضًا بعناصر فريدة مثل الشريط الجانبي وتنشيط النافذة تلقائيًا. يمكن أن يبدأ تلقائيًا باستخدام ChatGPT أو الصفحات المخصصة ويمكن أيضًا تنشيطه يدويًا باستخدام مفتاح الاختصار `Alt+Shift+S`. فيما يلي قنوات التنزيل: 4 | 5 | - **Chrome**: [متجر Chrome الإلكتروني](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [إضافات Microsoft Edge](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [إضافات متصفح Firefox](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [إصدار GitHub](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | بالإضافة إلى ذلك، نقدم نص Tampermonkey — [**اختصار ChatGPT في أي مكان**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere)، والذي يسمح للمستخدمين بتخصيص أسماء النطاقات المطابقة واستخدام الشريط الجانبي AiShort على أي موقع ويب. ومع ذلك، نظرًا لقيود حقن محتوى البرنامج النصي على صفحات ChatGPT، يتم تنشيط وظيفة الشريط الجانبي للبرنامج النصي عبر نافذة منبثقة على صفحات ChatGPT. 11 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # مشكلات استخدام الامتداد 2 | 3 | ## قيود الصفحة المضمنة في ChatGPT 4 | 5 | يفرض ChatGPT العديد من قيود الوصول على صفحات الامتداد المضمنة، ولا سيما عدم دعم تفويض حساب Google لتسجيل الدخول. وهذا يعني أنه يجب على المستخدمين تسجيل الدخول باستخدام اسم المستخدم وكلمة المرور. 6 | 7 | إذا تم إنشاء حسابك في البداية من خلال تفويض Google، فيمكنك استخدام ميزة "نسيت كلمة المرور" لتعيين كلمة مرور جديدة. سيضمن القيام بذلك تسجيل الدخول بنجاح إلى الصفحة المضمنة في ChatGPT. 8 | 9 | ## إشعار حظر المحتوى 10 | 11 | بعد تسجيل الدخول باستخدام اسم المستخدم وكلمة المرور، قد تواجه أحيانًا إشعارًا ينص على "تم حظر هذا المحتوى". في مثل هذه الحالات، غالبًا ما يكون إعادة تحميل الصفحة كافيًا لحل المشكلة وإعادة الصفحة إلى حالتها الطبيعية بعد تسجيل الدخول. 12 | 13 | من المهم ملاحظة أن تبديل اللغات داخل صفحة ChatGPT المدمجة قد يؤدي أيضًا إلى ظهور إشعار "تم حظر هذا المحتوى". لذلك، أوصي بتغيير اللغات من خلال إعدادات الامتداد بدلاً من تغييرها مباشرة على الصفحة المدمجة. يمكن أن يساعد هذا النهج في تجنب رسائل الخطأ غير الضرورية. 14 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # إعدادات Firefox 2 | 3 | تعد إعدادات متصفح Firefox أكثر تعقيدًا، وفيما يلي خطوتان رئيسيتان للتكوين: 4 | 5 | ## 1. تثبيت الملحق وإعداد الوصول 6 | 7 | أولاً، اختر "تثبيت ملحق ChatGPT Shortcut" (Pin to Toolbar) في شريط أدوات Firefox، ثم انتقل إلى مركز الإضافات، واختر "الخيارات" (Options) في قائمة ملحق ChatGPT Shortcut للدخول إلى إعدادات الملحق. الخطوات موضحة في الصورة التالية: 8 | 9 | ![إعدادات Firefox](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. تفويض الملحق للعمل 12 | 13 | ثانيًا، لضمان تشغيل الملحق بشكل صحيح على مواقع مثل ChatGPT و Bard، تحتاج إلى النقر بزر الماوس الأيمن على أيقونة الملحق في هذه المواقع، واختيار "السماح دائمًا بالتشغيل على هذا الموقع" (Always allow on ***). هذه الخطوة تمنح الملحق الإذن بتعديل المحتوى وإضافة الشريط الجانبي على المواقع المحددة. 14 | 15 | ![إذن ملحق Firefox](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | After successful installation, you can view the [plugin usage tutorial](./usage.md). 18 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # دليل التثبيت المحلي لمكونات Chrome ZIP 2 | 3 | ## تنزيل المكون الإضافي 4 | 5 | قم بتنزيل حزمة تثبيت Zip لمكون ChatGPT Shortcut الإضافي (ChatGPT_Shortcut-zip-3.x.x.zip) من [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) وفك ضغطها. (يجب الاحتفاظ بالمجلد الذي تم فك ضغطه على الكمبيوتر، لذا تذكر فك ضغطه إلى موقع دائم) 6 | 7 | ## تمكين وضع المطور 8 | 9 | افتح صفحة "إدارة الإضافات" في Chrome وقم بتمكين "وضع المطور". 10 | 11 | انسخ العنوان التالي والصقه في شريط عناوين المتصفح، واضغط على Enter لفتحه. قم بتمكين "وضع المطور" في الزاوية اليمنى العليا من الصفحة. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## تثبيت البرنامج الإضافي 20 | 21 | اسحب المجلد غير المضغوط إلى صفحة الامتداد لإكمال التثبيت. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | بعد التثبيت الناجح، يمكنك عرض [دليل استخدام البرنامج الإضافي](./usage.md). 26 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension.md: -------------------------------------------------------------------------------- 1 | # دليل التثبيت المحلي لمكونات Chrome CRX 2 | 3 | ## تنزيل حزمة CRX 4 | 5 | قم بتنزيل حزمة تثبيت ChatGPT Shortcut crx (ChatGPT_Shortcut-crx-3.x.x.zip) من [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) وفك ضغطها (يوجد ملف crx في المجلد الذي تم فك ضغطه). 6 | 7 | ![](https://img.newzone.top/2024-08-12-21-47-10.png?imageMogr2/format/webp) 8 | 9 | ## تمكين وضع المطور 10 | 11 | افتح صفحة "إدارة الإضافات" في Chrome وقم بتمكين "وضع المطور". 12 | 13 | انسخ العنوان التالي والصقه في شريط عناوين المتصفح، ثم اضغط على Enter لفتحه. قم بتمكين "وضع المطور" في الزاوية اليمنى العليا من الصفحة. 14 | 15 | ```txt 16 | chrome://extensions 17 | ``` 18 | 19 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 20 | 21 | ## تثبيت البرنامج المساعد 22 | 23 | مج المساعد للترجمة الشاملة (ملاحظة⚠️: تحتاج إلى سحب ملف .crx، لا تنقر فوق [تحميل الامتداد غير المضغوط]) 24 | 25 | ![](https://img.newzone.top/2024-08-12-22-16-38.png?imageMogr2/format/webp) 26 | 27 | بعد التثبيت الناجح، يمكنك عرض [دليل استخدام البرنامج المساعد](./usage.md). 28 | 29 | ## هل لديك مشاكل في التثبيت؟ 30 | 31 | 1. مستخدمو Windows، يرجى التحقق مما إذا كانت حزمة التثبيت التي تم تنزيلها قد تم فك ضغطها (لم يتم النقر عليها مرتين لفتحها)؟ 32 | 33 | 2. هل تم تمكين "وضع المطور"؟ إذا لم يكن كذلك، يرجى الرجوع إلى الخطوة الثانية. 34 | 35 | 3. هل قمت بسحب ملف crx إلى صفحة "الإضافات"؟ ملاحظة⚠️: لا تنقر فوق [تحميل الامتداد غير المضغوط]، بل يجب عليك سحب ملف crx. 36 | 37 | 4. لا يسمح المتصفح بتثبيت ملف crx؟ حاول تثبيت ملف zip! [انقر هنا لعرض تعليمات تثبيت zip](./manual-chrome-extension-zip.md). 38 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # الأدلة الجماعية للكلمات المقترحة 2 | 3 | سيتم عرض قسم الأدلة الجماعية للكلمات المقترحة التي تمت مشاركتها وتحميلها من قبل المستخدمين على الموقع. يمكنك مشاركة الكلمات المقترحة في الصفحة العامة، وفي الوقت نفسه يمكنك الاطلاع على الكلمات المقترحة التي تمت مشاركتها من قبل الآخرين للحصول على إلهام. 4 | 5 | ## الترتيب والتصويت 6 | 7 | توفر صفحة الأدلة الجماعية للكلمات المقترحة خيارات التصنيف حسب وقت النشر وتصويت الإعجاب/الإنكار والبحث عن الكلمات الرئيسية، حيث يمكنك اختيار أدلة المجتمع بحرية. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | سيحدد تصويت الإعجاب/الإنكار الكلمات المقترحة المدرجة على الصفحة الرئيسية. يُحظَر حاليًا التصويت إلا للمستخدمين المسجلين، ويُسجل تصويت متكرر لنفس الكلمة المقترحة فقط لآخر مرة تم فيها التصويت. 12 | 13 | ## الكلمات الخاصة 14 | 15 | إذا كنت ترغب في الاحتفاظ بكلمات خاصة، يمكنك اختيار مشاركتها مع المجتمع أو عدم مشاركتها عند تقديم أو تحديث الكلمات المقترحة. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # البدء 2 | 3 | باستخدام AiShort، ما عليك سوى نسخ المطالبة المحددة إلى أي نموذج حوار AI للحصول على الناتج في الاتجاه المحدد. فيما يلي الخطوات المحددة: 4 | 5 | 1. ابحث عن المطالبة التي تريدها أو حددها، ثم انقر فوق زر النسخ الموجود على المطالبة. 6 | 7 | 2. انسخ المطالبة إلى ChatGPT أو Gemini أو أي نموذج حوار AI. 8 | 9 | 3. أدخل متطلباتك وفقًا لمطالبة الحوار. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## نماذج الذكاء الاصطناعي الشائعة 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## تكامل واجهة برمجة التطبيقات الخاصة بطرف ثالث 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # المفضلات ومطالبات التقديم 2 | 3 | بعد تسجيل الدخول، لك مطلق الحرية في إضافة أو إزالة المطالبات المفضلة أو إضافة مطالبات شخصية. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## المطالب المفضلة 10 | 11 | ### Add Favorites 12 | 13 | بعد تسجيل الدخول، ستتم إزالة تسميات المجموعة الافتراضية وسيتم عرض زر "المفضلة" بجوار المطالبة. بعد ذلك، عند تفضيل أو إزالة مفضلة، سيتم عرض تلميح لحالة المفضلة في الوقت الفعلي. 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### إزالة المفضلة 18 | 19 | انقر على أيقونة القلب الموجودة على الجانب الأيمن من المطالبة المفضلة لإزالتها من المفضلة. 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## إضافة موجهات مخصصة 24 | 25 | بعد إرسال المطالبة، سيتم عرضها تحت تسمية «المطالبات الخاصة بك». 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-plugin-content-docs/current/introduction.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: / 3 | --- 4 | 5 | # Introduction 6 | 7 | توفر AiShort قائمة موجزة وسهلة الاستخدام من التعليمات البرمجية للذكاء الاصطناعي. حتى بدون فهم للأوامر، يمكنك العثور بسهولة على الأوامر المناسبة لمختلف السيناريوهات من خلال التصفية والبحث، وبالتالي تحسين إنتاجيتك. 8 | 9 | 🚀 **أوامر بنقرة واحدة**: بنقرة واحدة فقط، يمكنك الحصول على مجموعة متنوعة من الأوامر المختارة بعناية من قبل الخبراء. أرسلها إلى نماذج اللغة الذكاء الاصطناعي مثل ChatGPT ويمكنك الحصول على الناتج المتوقع. 10 | 11 | 💻 **تعزيز الإنتاجية**: باستخدام الأوامر المُحسّنة، يمكنك الحصول على ردود فعل أكثر دقة وعملية، وبالتالي تعزيز كفاءة عملك بشكل فعال. 12 | 13 | 🌍 **التحسين للغات غير الإنجليزية**: نقدم الترجمات للأوامر الإنجليزية في 12 لغة عالمية رئيسية، وندعم الردود الافتراضية بلغتك الأم، مما يُمكّن الأشخاص الذين لا يتحدثون الإنجليزية من الفهم والاستخدام بسهولة. 14 | 15 | 💾 **حفظ الأوامر**: جمع وتحرير وإدارة أوامرك المفضلة بسهولة للاستخدام في المستقبل. 16 | 17 | 🌐 **مشاركة الأوامر**: شارك أوامرك المفضلة، وتعاون مع الآخرين، واستلهم المزيد من الأفكار. 18 | 19 | 🗳️ **نظام التصويت في المجتمع**: مشابه لـ Product Hunt أو Reddit، المنصة مدعومة من المجتمع. سيتم دفع أفضل الأوامر إلى الصفحة الرئيسية. 20 | 21 | 📦 **جاهز للاستخدام**: قم بزيارة https://www.aishort.top/ar/ لبدء الاستخدام. 22 | 23 | مصدر أوامر AiShort يشمل اختيارات الإنترنت، مشاركات المجتمع، و [Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts). سنقوم بتحديثات منتظمة لتقديم أوامر وإلهام جديد لك. لفهم كيفية استخدام AiShort، 24 | 25 | نرحب بك للانضمام إلى مجتمعنا في Discord لتبادل الأفكار والملاحظات. 26 | 27 | 28 | chat on Discord 29 | 30 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/ar/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "AI Short", 4 | "description": "The title in the navbar" 5 | }, 6 | "logo.alt": { 7 | "message": "ChatGPT Shortcuts", 8 | "description": "The alt text of navbar logo" 9 | }, 10 | "item.label.📘 使用说明": { 11 | "message": "📘 الوثائق", 12 | "description": "Navbar item with label 📘 使用说明" 13 | }, 14 | "item.label.🏘️ 社区提示词": { 15 | "message": "🏘️ مطالب المجتمع", 16 | "description": "Navbar item with label 🏘️ 社区提示词" 17 | }, 18 | "item.label.🛠️ 应用工具": { 19 | "message": "🛠️ الأدوات", 20 | "description": "Navbar item with label 🛠️ 应用工具" 21 | }, 22 | "item.label.IMGPrompt": { 23 | "message": "IMGPrompt", 24 | "description": "Navbar item with label IMGPrompt" 25 | }, 26 | "item.label.文字处理": { 27 | "message": "أدوات أخرى", 28 | "description": "Navbar item with label 文字处理" 29 | }, 30 | "item.label.工具收藏": { 31 | "message": "مجموعة الأدوات", 32 | "description": "Navbar item with label 工具收藏" 33 | }, 34 | "item.label.Find on Product Hunt": { 35 | "message": "ابحث على Product Hunt", 36 | "description": "Navbar item with label Find on Product Hunt" 37 | }, 38 | "item.label.反馈建议": { 39 | "message": "التعليقات", 40 | "description": "Navbar item with label 反馈建议" 41 | }, 42 | "item.label.📝 提交反馈": { 43 | "message": "📝 تقديم الملاحظات", 44 | "description": "Navbar item with label 📝 提交反馈" 45 | }, 46 | "item.label.💬 加入 QQ 群": { 47 | "message": "💬 تحدث معنا على QQ", 48 | "description": "Navbar item with label 💬 加入 QQ 群" 49 | }, 50 | "item.label.📺 加入 Discord": { 51 | "message": "📺 انضم إلى Discord", 52 | "description": "Navbar item with label 📺 加入 Discord" 53 | }, 54 | "item.label.脚本扩展": { 55 | "message": "الإضافات", 56 | "description": "Navbar item with label 脚本扩展" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # এক্সটেনশন ইনস্টল করুন 2 | 3 | AiShort (ChatGPT শর্টকাট) একটি ব্রাউজার এক্সটেনশন যা Chrome, Edge, Firefox এবং অন্যান্য Chromium-ভিত্তিক ব্রাউজারগুলির সাথে সামঞ্জস্যপূর্ণ। এই এক্সটেনশনটি শুধুমাত্র চ্যাটজিপিটি শর্টকাটের ওয়েব সংস্করণের কার্যকারিতাই অফার করে না বরং এটি একটি সাইডবার এবং স্বয়ংক্রিয় উইন্ডো অ্যাক্টিভেশনের মতো অনন্য উপাদানগুলিও বৈশিষ্ট্যযুক্ত করে। এটি স্বয়ংক্রিয়ভাবে ChatGPT বা কাস্টম পৃষ্ঠাগুলির সাথে শুরু হতে পারে এবং `Alt+Shift+S` শর্টকাট কী ব্যবহার করে ম্যানুয়ালি সক্রিয় করা যেতে পারে। নীচে ডাউনলোড চ্যানেলগুলি রয়েছে: 4 | 5 | - **Chrome**: [Chrome ওয়েব স্টোর](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Microsoft Edge Addons](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [Firefox Browser ADD-ONS](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [GitHub রিলিজ](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | উপরন্তু, আমরা একটি Tampermonkey স্ক্রিপ্ট অফার করি — [**ChatGPT Shortcut Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), যা ব্যবহারকারীদের মিলে ডোমেন নাম কাস্টমাইজ করতে এবং AiShort সাইডবার ব্যবহার করতে দেয় যেকোনো ওয়েবসাইটে। যাইহোক, ChatGPT পৃষ্ঠাগুলিতে স্ক্রিপ্ট সামগ্রী ইনজেকশনের সীমাবদ্ধতার কারণে, স্ক্রিপ্টের সাইডবার ফাংশনটি ChatGPT পৃষ্ঠাগুলিতে একটি পপআপের মাধ্যমে সক্রিয় করা হয়। 11 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # এক্সটেনশন ব্যবহারের সমস্যা 2 | 3 | ## চ্যাটজিপিটি এমবেডেড পৃষ্ঠার সীমাবদ্ধতা 4 | 5 | ChatGPT তার এম্বেড করা এক্সটেনশন পৃষ্ঠাগুলিতে বেশ কয়েকটি অ্যাক্সেস বিধিনিষেধ আরোপ করে, বিশেষত লগইন করার জন্য Google অ্যাকাউন্ট অনুমোদনের জন্য সমর্থনের অভাব। এর মানে হল যে ব্যবহারকারীদের অবশ্যই তাদের ব্যবহারকারীর নাম এবং পাসওয়ার্ড ব্যবহার করে লগ ইন করতে হবে। 6 | 7 | যদি আপনার অ্যাকাউন্ট প্রাথমিকভাবে Google অনুমোদনের মাধ্যমে তৈরি করা হয়, তাহলে আপনি একটি নতুন পাসওয়ার্ড সেট করতে "পাসওয়ার্ড ভুলে যান" বৈশিষ্ট্যটি ব্যবহার করতে পারেন৷ এটি করা নিশ্চিত করবে যে আপনি সফলভাবে ChatGPT এম্বেড করা পৃষ্ঠায় লগ ইন করতে পারবেন। 8 | 9 | ## কন্টেন্ট ব্লকেজ বিজ্ঞপ্তি 10 | 11 | একটি ব্যবহারকারীর নাম এবং পাসওয়ার্ড দিয়ে লগ ইন করার পরে, আপনি মাঝে মাঝে "এই সামগ্রীটি অবরুদ্ধ" উল্লেখ করে একটি বিজ্ঞপ্তির সম্মুখীন হতে পারেন৷ এই ধরনের দৃষ্টান্তে, সমস্যাটি সমাধান করার জন্য এবং লগইন-পরবর্তী পৃষ্ঠাটিকে তার স্বাভাবিক অবস্থায় ফিরিয়ে আনার জন্য প্রায়শই পৃষ্ঠাটি পুনরায় লোড করা যথেষ্ট। 12 | 13 | এটা মনে রাখা গুরুত্বপূর্ণ যে ইন্টিগ্রেটেড ChatGPT পৃষ্ঠার মধ্যে ভাষা পরিবর্তন করা "এই বিষয়বস্তু ব্লক করা হয়েছে" বিজ্ঞপ্তিটি ট্রিগার করতে পারে। তাই, আমি সরাসরি সমন্বিত পৃষ্ঠার পরিবর্তে এক্সটেনশনের সেটিংসের মাধ্যমে ভাষা পরিবর্তন করার পরামর্শ দিচ্ছি। এই পদ্ধতিটি অপ্রয়োজনীয় ত্রুটি বার্তা এড়াতে সাহায্য করতে পারে। 14 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # ফায়ারফক্স সেটিংস 2 | 3 | ফায়ারফক্স প্লাগ-ইন ব্যবহার করার আগে, নিম্নলিখিত দুটি ধাপে এটি সেট আপ করার পরামর্শ দেওয়া হয়। 4 | 5 | ## 1. এক্সটেনশন পিনিং এবং অ্যাক্সেস সেটিংস 6 | 7 | প্রথমে, Firefox টুলবারে "Pin ChatGPT শর্টকাট এক্সটেনশন" নির্বাচন করুন, তারপর এক্সটেনশন কেন্দ্রে প্রবেশ করুন। ChatGPT শর্টকাট এক্সটেনশন আইটেমে, এক্সটেনশনের সেটিংস ইন্টারফেসে প্রবেশ করতে "বিকল্পগুলি" নির্বাচন করুন৷ নির্দিষ্ট পদক্ষেপগুলি নিম্নলিখিত ছবিতে দেখানো হয়েছে: 8 | 9 | ![Firefox সেটিংস](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. এক্সটেনশন অপারেশন অনুমোদন করুন 12 | 13 | দ্বিতীয়ত, ChatGPT এবং Bard-এর মতো ওয়েবসাইটগুলিতে সাধারণত এক্সটেনশন ফাংশন নিশ্চিত করতে, আপনাকে এই ওয়েবসাইটের এক্সটেনশন আইকনে ডান-ক্লিক করতে হবে এবং "এই সাইটে সর্বদা অনুমতি দিন" নির্বাচন করতে হবে। এই ক্রিয়াটি বিষয়বস্তু পরিবর্তন করতে এবং মনোনীত ওয়েবসাইটে সাইডবার যোগ করার জন্য এক্সটেনশনকে অনুমতি দেয়। 14 | 15 | ![ফায়ারফক্স এক্সটেনশন অনুমতি](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | সফল ইনস্টলেশনের পরে, আপনি [প্লাগইন ব্যবহার টিউটোরিয়াল](./usage.md) দেখতে পারেন। 18 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Chrome ZIP প্লাগইন স্থানীয় ইনস্টলেশন গাইড 2 | 3 | ## প্লাগইন ডাউনলোড করুন 4 | 5 | [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) থেকে ChatGPT শর্টকাট প্লাগইন জিপ ইনস্টলেশন প্যাকেজ (ChatGPT_Shortcut-zip-3.x.x.zip) ডাউনলোড করুন এবং আনজিপ করুন। (আনজিপ করা ফোল্ডারটিকে কম্পিউটারে রাখতে হবে, তাই এটিকে একটি স্থায়ী স্থানে আনজিপ করতে ভুলবেন না) 6 | 7 | ## বিকাশকারী মোড সক্ষম করুন 8 | 9 | ক্রোমের "এক্সটেনশন পরিচালনা করুন" পৃষ্ঠা খুলুন এবং "ডেভেলপার মোড" সক্ষম করুন। 10 | 11 | নিম্নলিখিত ঠিকানাটি অনুলিপি করুন এবং ব্রাউজার ঠিকানা বারে পেস্ট করুন এবং এটি খুলতে এন্টার টিপুন। পৃষ্ঠার উপরের ডানদিকে কোণায় "ডেভেলপার মোড" সক্ষম করুন৷ 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## প্লাগইন ইন্সটল করুন 20 | 21 | ইনস্টলেশন সম্পূর্ণ করতে এক্সটেনশন পৃষ্ঠায় আনজিপ করা ফোল্ডারটি টেনে আনুন। 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | সফল ইনস্টলেশনের পরে, আপনি [প্লাগইন ব্যবহার টিউটোরিয়াল](./usage.md) দেখতে পারেন। 26 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension.md: -------------------------------------------------------------------------------- 1 | # Chrome CRX প্লাগইন স্থানীয় ইনস্টলেশন গাইড 2 | 3 | ## CRX প্যাকেজ ডাউনলোড করুন 4 | 5 | [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) থেকে ChatGPT শর্টকাট crx ইনস্টলেশন প্যাকেজ (ChatGPT_Shortcut-crx-3.x.x.zip) ডাউনলোড করুন এবং এটি আনজিপ করুন (CRx ফাইলটি রয়েছে আনজিপ করা ফোল্ডার)। 6 | 7 | ![](https://img.newzone.top/2024-08-12-21-47-10.png?imageMogr2/format/webp) 8 | 9 | ## বিকাশকারী মোড সক্ষম করুন 10 | 11 | ক্রোমের "এক্সটেনশন পরিচালনা করুন" পৃষ্ঠা খুলুন এবং "ডেভেলপার মোড" সক্ষম করুন। 12 | 13 | নিম্নলিখিত ঠিকানাটি অনুলিপি করুন এবং ব্রাউজার ঠিকানা বারে পেস্ট করুন, তারপরে এটি খুলতে এন্টার টিপুন। পৃষ্ঠার উপরের ডানদিকে কোণায় "ডেভেলপার মোড" সক্ষম করুন৷ 14 | 15 | ```txt 16 | chrome://extensions 17 | ``` 18 | 19 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 20 | 21 | ## প্লাগইন ইন্সটল করুন 22 | 23 | প্লাগইন ইন্সটল করুন (নোট⚠️: আপনাকে .crx ফাইলে টেনে আনতে হবে, [আনজিপ করা এক্সটেনশন লোড করুন] এ ক্লিক করবেন না) 24 | 25 | ![](https://img.newzone.top/2024-08-12-22-16-38.png?imageMogr2/format/webp) 26 | 27 | সফল ইনস্টলেশনের পরে, আপনি [প্লাগইন ব্যবহার টিউটোরিয়াল](./usage.md) দেখতে পারেন। 28 | 29 | ## ইনস্টলেশনে সমস্যা আছে? 30 | 31 | 1. উইন্ডোজ ব্যবহারকারী, অনুগ্রহ করে দেখুন ডাউনলোড করা ইনস্টলেশন প্যাকেজটি আনজিপ করা হয়েছে কিনা (খুলতে ডাবল-ক্লিক করা হয়নি)? 32 | 33 | 2. "ডেভেলপার মোড" সক্ষম করা আছে? যদি না হয়, অনুগ্রহ করে দ্বিতীয় ধাপটি পড়ুন। 34 | 35 | 3. আপনি কি crx ফাইলটিকে "এক্সটেনশন" পৃষ্ঠায় টেনে এনেছেন? দ্রষ্টব্য⚠️: [লোড আনজিপড এক্সটেনশন] ক্লিক করবেন না, আপনাকে অবশ্যই crx ফাইলে টেনে আনতে হবে। 36 | 37 | 4. ব্রাউজার crx ফাইল ইনস্টল করার অনুমতি দেয় না? জিপ ফাইল ইনস্টল করার চেষ্টা করুন! [জিপ ইনস্টলেশন নির্দেশাবলী দেখতে এখানে ক্লিক করুন](./manual-chrome-extension-zip.md)। 38 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # সম্প্রদায়িক পরামর্শ শব্দাদি 2 | 3 | সামাজিক পরামর্শ শব্দাদি বিভাগটি সম্প্রদায়ের লোকেরা এক্সপোজ করে এবং আপলোড করে যা প্রতিদিন ব্যবহার করে। আপনি প্রকাশের জন্য এই শব্দাদি পাবলিক পৃষ্ঠাতে শেয়ার করতে পারেন এবং অন্য লোকের শব্দাদি দেখে আপনার জন্য প্রয়োজনীয় প্রার্থনা করতে পারেন। 4 | 5 | ## বাছাই এবং ভোট 6 | 7 | সামাজিক পরামর্শ পৃষ্ঠাটি প্রকাশের সময়, লাইক / ডিসলাইকের ভোট এবং কীওয়ার্ড অনুসন্ধান অপশন সরবরাহ করে, যার মাধ্যমে আপনি সামাজিক পরামর্শ বাছাই করতে পারেন। 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | লাইক / ডিসলাইক ভোট সামাজিক পরামর্শ পৃষ্ঠায় সংগৃহীত শব্দাদি নির্ধারণ করবে। বর্তমানে শুধুমাত্র লগইন করা ব্যবহারকারীদেরকে ভোট দেওয়া হয়, একই শব্দাদি একাধিকবার ভোটের জন্য শুধুমাত্র সর্বশেষ একটি সংরক্ষণ করা হয়। 12 | 13 | ## গোপনীয় শব্দাদি 14 | 15 | যদি আপনি নিজস্ব শব্দাদি সংরক্ষণ করতে চান, তবে সামাজিক পরামর্শ সাবমিট বা আপডেট করার সময় আপনি ভাগ করতে পারেন কি আপনি সম্প্রদায়ের সাথে শেয়ার করতে চান। 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # শুরু করা 2 | 3 | AiShort ব্যবহার করে, নির্দিষ্ট দিক থেকে আউটপুট পেতে আপনাকে শুধুমাত্র নির্বাচিত প্রম্পটটি যেকোনো AI ডায়ালগ মডেলে কপি করতে হবে। এখানে নির্দিষ্ট পদক্ষেপ আছে: 4 | 5 | 1. আপনি যে প্রম্পটটি চান তা অনুসন্ধান করুন বা নির্বাচন করুন এবং তারপরে প্রম্পটে অনুলিপি বোতামটি ক্লিক করুন৷ 6 | 7 | 2. ChatGPT, Gemini বা যেকোনো AI ডায়ালগ মডেলে প্রম্পটটি কপি করুন। 8 | 9 | 3. ডায়ালগ প্রম্পট অনুযায়ী আপনার প্রয়োজনীয়তা লিখুন। 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # পছন্দসই এবং জমা দেওয়ার প্রম্পট৷ 2 | 3 | লগ ইন করার পরে, আপনি পছন্দসই প্রম্পট যোগ বা অপসারণ করতে বা ব্যক্তিগত প্রম্পট যোগ করতে পারবেন। 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## পছন্দের প্রম্পট 10 | 11 | ### প্রিয় যোগ করুন৷ 12 | 13 | লগ ইন করার পরে, ডিফল্ট সংগ্রহের লেবেলগুলি সরানো হবে এবং প্রম্পটের পাশে "পছন্দের" বোতামটি প্রদর্শিত হবে। এর পরে, আপনি যখন পছন্দ করেন বা পছন্দ করেন, তখন প্রিয় স্ট্যাটাসের একটি ইঙ্গিত রিয়েল টাইমে প্রদর্শিত হবে। 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### প্রিয়গুলি সরান৷ 18 | 19 | আপনার পছন্দসই থেকে এটি সরাতে একটি প্রিয় প্রম্পটের ডানদিকে অবস্থিত হার্ট আইকনে ক্লিক করুন। 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## কাস্টম প্রম্পট যোগ করুন 24 | 25 | একটি প্রম্পট জমা দেওয়ার পরে, এটি "আপনার প্রম্পট" লেবেলের অধীনে প্রদর্শিত হবে। 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/bn/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # Erweiterung installieren 2 | 3 | AiShort (ChatGPT Shortcut) ist eine Browsererweiterung, die mit Chrome, Edge, Firefox und anderen Chromium-basierten Browsern kompatibel ist. Diese Erweiterung bietet nicht nur die Funktionen der Webversion von ChatGPT Shortcut, sondern verfügt auch über einzigartige Elemente wie eine Seitenleiste und automatische Fensteraktivierung. Sie kann automatisch mit ChatGPT oder benutzerdefinierten Seiten starten und auch manuell mit der Tastenkombination „Alt+Umschalt+S“ aktiviert werden. Nachfolgend sind die Downloadkanäle aufgeführt: 4 | 5 | - **Chrome**: [Chrome Web Store](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Microsoft Edge Addons](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [Firefox Browser ADD-ONS](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | Zusätzlich bieten wir ein Tampermonkey-Skript an — [**ChatGPT Shortcut Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), mit dem Benutzer passende Domänennamen anpassen und die AiShort-Seitenleiste auf jeder Website verwenden können. Aufgrund von Einschränkungen bei der Einfügung von Skriptinhalten auf ChatGPT-Seiten wird die Seitenleistenfunktion des Skripts jedoch über ein Popup auf ChatGPT-Seiten aktiviert. 11 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # Probleme bei der Nutzung von Erweiterungen 2 | 3 | ## Einschränkungen für eingebettete ChatGPT-Seiten 4 | 5 | ChatGPT legt mehrere Zugriffsbeschränkungen für seine eingebetteten Erweiterungsseiten fest, insbesondere die fehlende Unterstützung für die Google-Kontoautorisierung zur Anmeldung. Dies bedeutet, dass sich Benutzer mit ihrem Benutzernamen und Passwort anmelden müssen. 6 | 7 | Wenn Ihr Konto ursprünglich über eine Google-Autorisierung erstellt wurde, können Sie die Funktion „Passwort vergessen“ verwenden, um ein neues Passwort festzulegen. Dadurch wird sichergestellt, dass Sie sich erfolgreich bei der eingebetteten ChatGPT-Seite anmelden können. 8 | 9 | ## Hinweis zur Blockierung von Inhalten 10 | 11 | Nach der Anmeldung mit einem Benutzernamen und einem Passwort wird gelegentlich die Meldung „Dieser Inhalt ist blockiert“ angezeigt. In solchen Fällen reicht es oft aus, die Seite einfach neu zu laden, um das Problem zu beheben und die Seite nach der Anmeldung wieder in ihren normalen Zustand zu versetzen. 12 | 13 | Es ist wichtig zu beachten, dass das Wechseln der Sprache innerhalb der integrierten ChatGPT-Seite ebenfalls den Hinweis „Dieser Inhalt ist blockiert“ auslösen kann. Daher empfehle ich, die Sprachen über die Einstellungen der Erweiterung und nicht direkt auf der integrierten Seite zu ändern. Dieser Ansatz kann dazu beitragen, unnötige Fehlermeldungen zu vermeiden. 14 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Firefox-Einstellungen 2 | 3 | Bevor Sie das Firefox-Plug-in verwenden, wird empfohlen, es in den folgenden zwei Schritten einzurichten. 4 | 5 | ## 1. Einstellungen für das Anheften und Zugreifen auf Erweiterungen 6 | 7 | Wählen Sie zunächst „ChatGPT-Shortcut-Erweiterung anheften“ in der Firefox-Symbolleiste und rufen Sie dann das Erweiterungscenter auf. Wählen Sie im Erweiterungselement „ChatGPT-Shortcut“ „Optionen“, um die Einstellungsoberfläche der Erweiterung aufzurufen. Die spezifischen Schritte sind in der folgenden Abbildung dargestellt: 8 | 9 | ![Firefox-Einstellungen](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. Erweiterungsbetrieb autorisieren 12 | 13 | Zweitens müssen Sie mit der rechten Maustaste auf das Erweiterungssymbol auf diesen Websites klicken und „Auf dieser Site immer zulassen“ auswählen, um sicherzustellen, dass die Erweiterung auf Websites wie ChatGPT und Bard normal funktioniert. Diese Aktion erteilt der Erweiterung die Berechtigung, Inhalte zu ändern und Seitenleisten auf bestimmten Websites hinzuzufügen. 14 | 15 | ![Firefox-Erweiterungsberechtigung](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | Nach erfolgreicher Installation können Sie das [Tutorial zur Verwendung des Plugins](./usage.md) ansehen. 18 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Lokale Installationsanleitung für das Chrome ZIP-Plugin 2 | 3 | ## Plugin herunterladen 4 | 5 | Laden Sie das Zip-Installationspaket des ChatGPT Shortcut-Plugins (ChatGPT_Shortcut-zip-3.x.x.zip) von [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) herunter und entpacken Sie es. (Der entpackte Ordner muss auf dem Computer gespeichert werden, denken Sie also daran, ihn an einem dauerhaften Ort zu entpacken) 6 | 7 | ## Entwicklermodus aktivieren 8 | 9 | Öffnen Sie die Seite „Erweiterungen verwalten“ von Chrome und aktivieren Sie den „Entwicklermodus“. 10 | 11 | Kopieren Sie die folgende Adresse, fügen Sie sie in die Adressleiste des Browsers ein und drücken Sie die Eingabetaste, um sie zu öffnen. Aktivieren Sie den „Entwicklermodus“ in der oberen rechten Ecke der Seite. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## Installieren Sie das Plugin 20 | 21 | Ziehen Sie den entpackten Ordner auf die Erweiterungsseite, um die Installation abzuschließen. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | Nach erfolgreicher Installation können Sie das [Plugin-Nutzungstutorial](./usage.md) ansehen. 26 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # Community-Empfehlungen 2 | 3 | Die Kategorie "Gemeinschaftliche Hinweiswörter" präsentiert benutzerdefinierte Hinweiswörter, die von Internetnutzern geteilt und hochgeladen werden. Sie können Ihre Hinweiswörter auf der öffentlichen Seite teilen und gleichzeitig die von anderen geteilten Hinweiswörter einsehen, um Inspiration zu erhalten. 4 | 5 | ## Sortierung und Abstimmung 6 | 7 | Die Gemeinschaftliche Hinweiswörter-Seite bietet die Optionen zur Sortierung nach Veröffentlichungsdatum, positiven/negativen Bewertungen und Schlüsselwortsuche. Sie können die Hinweiswörter der Gemeinschaft nach Belieben filtern. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | Positive/negative Bewertungen bestimmen die Aufnahme der Hinweiswörter auf der Startseite. Derzeit können nur angemeldete Benutzer abstimmen, und mehrfache Abstimmungen für dasselbe Hinweiswort werden nur für die letzte Abstimmung erfasst. 12 | 13 | ## Vertrauliche Hinweiswörter 14 | 15 | Wenn Sie Ihre vertraulichen Hinweiswörter speichern möchten, können Sie wählen, ob Sie sie mit der Gemeinschaft teilen möchten, wenn Sie Hinweiswörter einreichen oder aktualisieren. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # Erste Schritte 2 | 3 | Mit AiShort müssen Sie nur die ausgewählte Eingabeaufforderung in ein beliebiges KI-Dialogmodell kopieren, um die Ausgabe in die angegebene Richtung zu erhalten. Hier sind die einzelnen Schritte: 4 | 5 | 1. Suchen oder wählen Sie die gewünschte Eingabeaufforderung aus und klicken Sie dann auf die Schaltfläche „Kopieren“ in der Eingabeaufforderung. 6 | 7 | 2. Kopieren Sie die Eingabeaufforderung in ChatGPT, Gemini oder ein beliebiges KI-Dialogmodell. 8 | 9 | 3. Geben Sie Ihre Anforderungen entsprechend der Dialogaufforderung ein. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # Favoriten und Eingabeaufforderungen 2 | 3 | Nach der Anmeldung können Sie bevorzugte Eingabeaufforderungen hinzufügen oder entfernen oder persönliche Eingabeaufforderungen hinzufügen. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## Bevorzugte Eingabeaufforderung 10 | 11 | ### Favoriten hinzufügen 12 | 13 | Nach dem Anmelden werden die Standard-Sammlungsbezeichnungen entfernt und neben der Eingabeaufforderung wird die Schaltfläche „Favoriten“ angezeigt. Wenn Sie danach einen Favoriten als Favorit markieren oder entfernen, wird in Echtzeit ein Hinweis auf den Favoritenstatus angezeigt. 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### Favoriten entfernen 18 | 19 | Klicken Sie auf das Herzsymbol auf der rechten Seite einer favorisierten Anfrage, um sie aus Ihren Favoriten zu entfernen. 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## Eigene Anfragen hinzufügen 24 | 25 | Nach dem Einreichen einer Anfrage wird sie unter dem Label "Ihre Anfragen" angezeigt. 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # Install Extension 2 | 3 | AiShort (ChatGPT Shortcut) is a browser extension compatible with Chrome, Edge, Firefox, and other Chromium-based browsers. This extension not only offers the functionalities of the web version of ChatGPT Shortcut but also features unique elements like a sidebar and automatic window activation. It can automatically start with ChatGPT or custom pages and can also be manually activated using the `Alt+Shift+S` shortcut key. Below are the download channels: 4 | 5 | - **Chrome**: [Chrome Web Store](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Microsoft Edge Addons](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [Firefox Browser ADD-ONS](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | Additionally, we offer a Tampermonkey script — [**ChatGPT Shortcut Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), which allows users to customize matching domain names and use the AiShort sidebar on any website. However, due to script content injection limitations on ChatGPT pages, the sidebar function of the script is activated via a popup on ChatGPT pages. 11 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # Extension Usage Issues 2 | 3 | ## ChatGPT Embedded Page Limitations 4 | 5 | ChatGPT imposes several access restrictions on its embedded extension pages, notably the lack of support for Google account authorization for login. This means that users must log in using their username and password. 6 | 7 | If your account was initially created through Google authorization, you can use the "Forget Password" feature to set a new password. Doing so will ensure that you can successfully log in to the ChatGPT embedded page. 8 | 9 | ## Content Blockage Notice 10 | 11 | After logging in with a username and password, you might occasionally encounter a notification stating "This content is blocked." In such instances, simply reloading the page is often sufficient to resolve the issue and revert the page back to its normal state post-login. 12 | 13 | It's important to note that switching languages within the integrated ChatGPT page might also trigger the "This content is blocked" notice. Therefore, I recommend changing languages through the extension's settings rather than directly on the integrated page. This approach can help avoid unnecessary error messages. 14 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Firefox Settings 2 | 3 | Before using the Firefox plug-in, it is recommended to set it up in the following two steps. 4 | 5 | ## 1. Extension Pinning and Access Settings 6 | 7 | First, select "Pin ChatGPT Shortcut Extension" in the Firefox toolbar, then enter the extension center. On the ChatGPT Shortcut extension item, select "Options" to enter the extension's settings interface. The specific steps are as shown in the following image: 8 | 9 | ![Firefox settings](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. Authorize Extension Operation 12 | 13 | Secondly, to ensure the extension functions normally on websites like ChatGPT and Bard, you need to right-click the extension icon on these websites and select "Always allow on this site." This action grants the extension permission to modify content and add sidebars on designated websites. 14 | 15 | ![Firefox Extension Permission](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | After successful installation, you can view the [plugin usage tutorial](./usage.md). 18 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Chrome ZIP plugin local installation guide 2 | 3 | ## Download plugin 4 | 5 | Download the ChatGPT Shortcut plugin Zip installation package (ChatGPT_Shortcut-zip-3.x.x.zip) from [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) and unzip it. (The unzipped folder needs to be kept on the computer, so remember to unzip it to a permanent location) 6 | 7 | ## Enable developer mode 8 | 9 | Open the "Manage Extensions" page of Chrome and enable "Developer mode". 10 | 11 | Copy the following address and paste it into the browser address bar, and press Enter to open it. Enable "Developer mode" in the upper right corner of the page. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## Install the plugin 20 | 21 | Drag the unzipped folder into the extension page to complete the installation. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | After successful installation, you can view the [Plugin Usage Tutorial](./usage.md). 26 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension.md: -------------------------------------------------------------------------------- 1 | # Chrome CRX plugin local installation guide 2 | 3 | ## Download the CRX package 4 | 5 | Download the ChatGPT Shortcut crx installation package (ChatGPT_Shortcut-crx-3.x.x.zip) from [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) and unzip it (the crx file is in the unzipped folder). 6 | 7 | ![](https://img.newzone.top/2024-08-12-21-47-10.png?imageMogr2/format/webp) 8 | 9 | ## Enable developer mode 10 | 11 | Open the "Manage extensions" page of Chrome and enable "Developer mode". 12 | 13 | Copy the following address and paste it into the browser address bar, then press Enter to open it. Enable "Developer mode" in the upper right corner of the page. 14 | 15 | ```txt 16 | chrome://extensions 17 | ``` 18 | 19 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 20 | 21 | ## Install the plugin 22 | 23 | Install ChatGPT Shortcut plugin (Note⚠️: You need to drag in the .crx file, do not click [Load unzipped extension]) 24 | 25 | ![](https://img.newzone.top/2024-08-12-22-16-38.png?imageMogr2/format/webp) 26 | 27 | After successful installation, you can view the [Plugin Usage Tutorial](./usage.md). 28 | 29 | ## Have problems with installation? 30 | 31 | 1. Windows users, please check whether the downloaded installation package has been unzipped (not double-clicked to open)? 32 | 33 | 2. Is "Developer Mode" enabled? If not, please refer to the second step. 34 | 35 | 3. Did you drag the crx file to the "Extensions" page? Note⚠️: Do not click [Load unzipped extension], you must drag in the crx file. 36 | 37 | 4. The browser does not allow the crx file to be installed? Try installing the zip file! [Click here to view the zip installation instructions](./manual-chrome-extension-zip.md). 38 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # Community Prompts 2 | 3 | The community prompt section will showcase custom prompts shared and uploaded by users. You can share prompts on a public page and also view prompts shared by others for inspiration. 4 | 5 | ## Sorting and Voting 6 | 7 | The community prompt page offers options for sorting by publication time, upvotes/downvotes, and keyword search. You are free to filter community prompts according to your preferences. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | Upvotes/downvotes will determine the prompts included on the main page. Currently, only logged-in users can vote, and only the most recent vote for the same prompt will be recorded. 12 | 13 | ## Private Prompts 14 | 15 | If you desire to keep your prompts private, you can choose whether or not to share them with the community when submitting or updating your prompts. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | Using AiShort, you only need to copy the selected prompt to any AI dialogue model to get the output in the specified direction. Here are the specific steps: 4 | 5 | 1. Search or select the prompt you want, and then click the copy button on the prompt. 6 | 7 | 2. Copy the prompt to ChatGPT, Gemini or any AI dialogue model. 8 | 9 | 3. Enter your requirements according to the dialogue prompt. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # Favorites and Submission Prompts 2 | 3 | After logging in, you are free to add or remove favorite prompts, or add personal prompts. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## Favorite Prompt 10 | 11 | ### Add Favorites 12 | 13 | After logging in, the default collection labels will be removed and the "Favorites" button will be displayed next to the prompt. After that, when you favorite or remove a favorite, a hint of the favorite status will be displayed in real time. 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### Remove Favorites 18 | 19 | Click on the heart icon located on the right side of a favorite prompt to remove it from your favorites. 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## Add Custom Prompts 24 | 25 | After submitting a prompt, it will be displayed under the "My Prompts" label. 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # Instalar extensión 2 | 3 | AiShort (ChatGPT Shortcut) es una extensión de navegador compatible con Chrome, Edge, Firefox y otros navegadores basados ​​en Chromium. Esta extensión no solo ofrece las funcionalidades de la versión web de ChatGPT Shortcut, sino que también incluye elementos únicos como una barra lateral y activación automática de ventanas. Puede iniciarse automáticamente con ChatGPT o páginas personalizadas y también puede activarse manualmente utilizando la tecla de acceso directo `Alt+Shift+S`. A continuación se muestran los canales de descarga: 4 | 5 | - **Chrome**: [Chrome Web Store](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Complementos de Microsoft Edge](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [COMPLEMENTOS del navegador Firefox](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [Versión de GitHub](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | Además, ofrecemos un script de Tampermonkey: [**ChatGPT Shortcut Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), que permite a los usuarios personalizar los nombres de dominio coincidentes y utilizar la barra lateral de AiShort en cualquier sitio web. Sin embargo, debido a las limitaciones de inyección de contenido de scripts en las páginas de ChatGPT, la función de barra lateral del script se activa a través de una ventana emergente en las páginas de ChatGPT. 11 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # Problemas de uso de la extensión 2 | 3 | ## Limitaciones de la página integrada de ChatGPT 4 | 5 | ChatGPT impone varias restricciones de acceso en sus páginas integradas de extensión, en particular la falta de compatibilidad con la autorización de la cuenta de Google para iniciar sesión. Esto significa que los usuarios deben iniciar sesión con su nombre de usuario y contraseña. 6 | 7 | Si su cuenta se creó inicialmente a través de la autorización de Google, puede utilizar la función "Olvidar contraseña" para establecer una nueva contraseña. Al hacerlo, se asegurará de poder iniciar sesión correctamente en la página integrada de ChatGPT. 8 | 9 | ## Aviso de bloqueo de contenido 10 | 11 | Después de iniciar sesión con un nombre de usuario y una contraseña, es posible que ocasionalmente aparezca una notificación que indique "Este contenido está bloqueado". En tales casos, simplemente volver a cargar la página suele ser suficiente para resolver el problema y revertir la página a su estado normal después del inicio de sesión. 12 | 13 | Es importante tener en cuenta que cambiar de idioma dentro de la página integrada de ChatGPT también puede activar el aviso "Este contenido está bloqueado". Por lo tanto, recomiendo cambiar de idioma a través de la configuración de la extensión en lugar de hacerlo directamente en la página integrada. Este enfoque puede ayudar a evitar mensajes de error innecesarios. 14 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Configuración de Firefox 2 | 3 | Antes de usar el complemento de Firefox, se recomienda configurarlo en los dos pasos siguientes. 4 | 5 | ## 1. Configuración de acceso y fijación de extensiones 6 | 7 | Primero, seleccione "Fijar extensión de acceso directo de ChatGPT" en la barra de herramientas de Firefox y luego ingrese al centro de extensiones. En el elemento de extensión de acceso directo de ChatGPT, seleccione "Opciones" para ingresar a la interfaz de configuración de la extensión. Los pasos específicos se muestran en la siguiente imagen: 8 | 9 | ![Configuración de Firefox](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. Autorizar el funcionamiento de la extensión 12 | 13 | En segundo lugar, para garantizar que la extensión funcione normalmente en sitios web como ChatGPT y Bard, debe hacer clic derecho en el ícono de la extensión en estos sitios web y seleccionar "Permitir siempre en este sitio". Esta acción otorga a la extensión permiso para modificar el contenido y agregar barras laterales en los sitios web designados. 14 | 15 | ![Permiso de extensión de Firefox](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | Después de la instalación exitosa, puede ver el [tutorial de uso del complemento](./usage.md). 18 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Guía de instalación local del complemento ZIP de Chrome 2 | 3 | ## Descargar complemento 4 | 5 | Descarga el paquete de instalación Zip del complemento ChatGPT Shortcut (ChatGPT_Shortcut-zip-3.x.x.zip) desde [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) y descomprímelo. (La carpeta descomprimida debe conservarse en la computadora, así que recuerda descomprimirla en una ubicación permanente) 6 | 7 | ## Habilita el modo de desarrollador 8 | 9 | Abre la página "Administrar extensiones" de Chrome y habilita el "Modo de desarrollador". 10 | 11 | Copia la siguiente dirección y pégala en la barra de direcciones del navegador y presiona Enter para abrirla. Habilita el "Modo de desarrollador" en la esquina superior derecha de la página. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## Instalar el complemento 20 | 21 | Arrastre la carpeta descomprimida a la página de la extensión para completar la instalación. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | Después de una instalación exitosa, puede ver el [Tutorial de uso del complemento](./usage.md). 26 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # Comunidad de Propuestas 2 | 3 | La sección de propuestas de la comunidad exhibirá prompts personalizados compartidos y cargados por los usuarios. Puedes compartir tus propias propuestas en una página pública y también visualizar las propuestas compartidas por otros para inspiración. 4 | 5 | ## Clasificación y Votación 6 | 7 | La página de propuestas de la comunidad ofrece opciones para clasificar según la hora de publicación, votos a favor/en contra y búsqueda por palabras clave. Eres libre de filtrar las propuestas de la comunidad según tus preferencias. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | Los votos a favor/en contra determinarán las propuestas incluidas en la página principal. Actualmente, solo los usuarios registrados pueden votar y solo se registrará el voto más reciente para la misma propuesta. 12 | 13 | ## Propuestas Privadas 14 | 15 | Si deseas mantener tus propuestas en privado, puedes elegir si compartirlas o no con la comunidad al enviarlas o actualizarlas. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # Primeros pasos 2 | 3 | Con AiShort, solo necesita copiar el mensaje seleccionado en cualquier modelo de diálogo de IA para obtener el resultado en la dirección especificada. Estos son los pasos específicos: 4 | 5 | 1. Busque o seleccione el mensaje que desea y luego haga clic en el botón Copiar en el mensaje. 6 | 7 | 2. Copie el mensaje en ChatGPT, Gemini o cualquier modelo de diálogo de IA. 8 | 9 | 3. Ingrese sus requisitos de acuerdo con el mensaje del diálogo. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # Favoritos y solicitudes de envío 2 | 3 | Después de iniciar sesión, puedes agregar o eliminar indicaciones favoritas o agregar indicaciones personales. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## Mensaje favorito 10 | 11 | ### Agregar favoritos 12 | 13 | Después de iniciar sesión, se eliminarán las etiquetas de colección predeterminadas y se mostrará el botón "Favoritos" junto al mensaje. Después de eso, cuando agregue o elimine un favorito, se mostrará una pista del estado del favorito en tiempo real. 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### Eliminar favoritos 18 | 19 | Haz clic en el ícono de corazón ubicado en el lado derecho de una indicación favorita para quitarla de tus favoritos. 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## Agregar indicaciones personalizadas 24 | 25 | Después de enviar una indicación, se mostrará bajo la etiqueta "Tus Indicaciones". 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # Installer l'extension 2 | 3 | AiShort (ChatGPT Shortcut) est une extension de navigateur compatible avec Chrome, Edge, Firefox et d'autres navigateurs basés sur Chromium. Cette extension offre non seulement les fonctionnalités de la version Web de ChatGPT Shortcut, mais propose également des éléments uniques comme une barre latérale et l'activation automatique des fenêtres. Elle peut démarrer automatiquement avec ChatGPT ou des pages personnalisées et peut également être activée manuellement à l'aide de la touche de raccourci « Alt+Maj+S ». Voici les canaux de téléchargement : 4 | 5 | - **Chrome** : [Chrome Web Store](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge** : [Microsoft Edge Addons](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox** : [Firefox Browser ADD-ONS](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub** : [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | De plus, nous proposons un script Tampermonkey : [**ChatGPT Shortcut [N'importe où**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), qui permet aux utilisateurs de personnaliser les noms de domaine correspondants et d'utiliser la barre latérale AiShort sur n'importe quel site Web. Cependant, en raison des limitations d'injection de contenu de script sur les pages ChatGPT, la fonction de barre latérale du script est activée via une fenêtre contextuelle sur les pages ChatGPT. 11 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # Problèmes d'utilisation de l'extension 2 | 3 | ## Limitations de la page intégrée ChatGPT 4 | 5 | ChatGPT impose plusieurs restrictions d'accès sur ses pages d'extension intégrées, notamment l'absence de prise en charge de l'autorisation de compte Google pour la connexion. Cela signifie que les utilisateurs doivent se connecter à l'aide de leur nom d'utilisateur et de leur mot de passe. 6 | 7 | Si votre compte a été initialement créé via l'autorisation Google, vous pouvez utiliser la fonction « Mot de passe oublié » pour définir un nouveau mot de passe. Cela vous permettra de vous connecter avec succès à la page intégrée ChatGPT. 8 | 9 | ## Avis de blocage de contenu 10 | 11 | Après vous être connecté avec un nom d'utilisateur et un mot de passe, vous pouvez parfois recevoir une notification indiquant « Ce contenu est bloqué ». Dans de tels cas, il suffit souvent de recharger la page pour résoudre le problème et ramener la page à son état normal après la connexion. 12 | 13 | Il est important de noter que le changement de langue dans la page ChatGPT intégrée peut également déclencher l'avis « Ce contenu est bloqué ». Par conséquent, je recommande de changer de langue via les paramètres de l'extension plutôt que directement sur la page intégrée. Cette approche peut aider à éviter les messages d'erreur inutiles. 14 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Paramètres de Firefox 2 | 3 | Avant d'utiliser le plug-in Firefox, il est recommandé de le configurer en suivant les deux étapes suivantes. 4 | 5 | ## 1. Épinglage d'extension et paramètres d'accès 6 | 7 | Tout d'abord, sélectionnez « Épingler l'extension de raccourci ChatGPT » dans la barre d'outils Firefox, puis accédez au centre d'extensions. Sur l'élément d'extension de raccourci ChatGPT, sélectionnez « Options » pour accéder à l'interface des paramètres de l'extension. Les étapes spécifiques sont les suivantes : 8 | 9 | ![Paramètres de Firefox](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. Autoriser le fonctionnement de l'extension 12 | 13 | Deuxièmement, pour garantir que l'extension fonctionne normalement sur des sites Web tels que ChatGPT et Bard, vous devez cliquer avec le bouton droit sur l'icône de l'extension sur ces sites Web et sélectionner « Toujours autoriser sur ce site ». Cette action accorde à l'extension l'autorisation de modifier le contenu et d'ajouter des barres latérales sur les sites Web désignés. 14 | 15 | ![Autorisation d'extension Firefox](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | Après une installation réussie, vous pouvez consulter le [tutoriel d'utilisation du plugin](./usage.md). 18 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Guide d'installation locale du plugin Chrome ZIP 2 | 3 | ## Télécharger le plugin 4 | 5 | Téléchargez le package d'installation Zip du plugin ChatGPT Shortcut (ChatGPT_Shortcut-zip-3.x.x.zip) depuis [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) et décompressez-le. (Le dossier décompressé doit être conservé sur l'ordinateur, pensez donc à le décompresser dans un emplacement permanent) 6 | 7 | ## Activer le mode développeur 8 | 9 | Ouvrez la page « Gérer les extensions » de Chrome et activez le « Mode développeur ». 10 | 11 | Copiez l'adresse suivante et collez-la dans la barre d'adresse du navigateur, puis appuyez sur Entrée pour l'ouvrir. Activez le « Mode développeur » dans le coin supérieur droit de la page. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## Installer le plugin 20 | 21 | Faites glisser le dossier décompressé dans la page de l'extension pour terminer l'installation. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | Une fois l'installation réussie, vous pouvez consulter le [Didacticiel d'utilisation du plugin](./usage.md). 26 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # Prompts de la communauté 2 | 3 | La section des prompts de la communauté mettra en valeur des prompts personnalisés partagés et téléchargés par les utilisateurs. Vous pouvez partager des prompts sur une page publique et également consulter des prompts partagés par d'autres utilisateurs pour vous inspirer. 4 | 5 | ## Tri et Vote 6 | 7 | La page des prompts de la communauté offre des options de tri selon l'heure de publication, les votes positifs/négatifs et la recherche par mot-clé. Vous êtes libre de filtrer les prompts de la communauté selon vos préférences. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | Les votes positifs/négatifs détermineront les prompts inclus sur la page principale. Actuellement, seuls les utilisateurs connectés peuvent voter, et seul le vote le plus récent pour un même prompt sera enregistré. 12 | 13 | ## Prompts Privés 14 | 15 | Si vous souhaitez garder vos prompts privés, vous pouvez choisir de les partager ou non avec la communauté lors de la soumission ou de la mise à jour de vos prompts. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # Mise en route 2 | 3 | Avec AiShort, il vous suffit de copier l'invite sélectionnée dans n'importe quel modèle de dialogue IA pour obtenir la sortie dans la direction spécifiée. Voici les étapes spécifiques : 4 | 5 | 1. Recherchez ou sélectionnez l'invite souhaitée, puis cliquez sur le bouton Copier de l'invite. 6 | 7 | 2. Copiez l'invite dans ChatGPT, Gemini ou n'importe quel modèle de dialogue IA. 8 | 9 | 3. Saisissez vos exigences en fonction de l'invite de dialogue. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # Favoris et invites de soumission 2 | 3 | Une fois connecté, vous êtes libre d'ajouter ou de supprimer des invites favorites, ou d'ajouter des invites personnelles. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## Favoris 10 | 11 | Après vous être connecté, un bouton "Favori" sera affiché à côté de chaque prompt. Lorsque vous ajoutez ou supprimez un prompt de vos favoris, l'état de favori du prompt sera mis à jour en temps réel. 12 | 13 | ## Invite favorite 14 | 15 | ### Ajouter aux favoris 16 | 17 | Une fois connecté, les libellés de collection par défaut seront supprimés et le bouton « Favoris » s'affichera à côté de l'invite. Après cela, lorsque vous ajouterez ou supprimerez un favori, un indice du statut du favori s'affichera en temps réel. 18 | 19 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 20 | 21 | ### Supprimer les favoris 22 | 23 | Cliquez sur l'icône en forme de cœur située à droite d'un prompt favori pour le supprimer de vos favoris. 24 | 25 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 26 | 27 | ## Ajouter des prompts personnalisés 28 | 29 | Après avoir soumis un prompt, il sera affiché sous l'étiquette "Vos prompts". 30 | 31 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 32 | 33 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 34 | 35 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 36 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # एक्सटेंशन इंस्टॉल करें 2 | 3 | AiShort (ChatGPT शॉर्टकट) एक ब्राउज़र एक्सटेंशन है जो क्रोम, एज, फ़ायरफ़ॉक्स और अन्य क्रोमियम-आधारित ब्राउज़र के साथ संगत है। यह एक्सटेंशन न केवल ChatGPT शॉर्टकट के वेब संस्करण की कार्यक्षमता प्रदान करता है, बल्कि साइडबार और स्वचालित विंडो सक्रियण जैसे अद्वितीय तत्व भी प्रदान करता है। यह स्वचालित रूप से ChatGPT या कस्टम पेजों के साथ शुरू हो सकता है और `Alt+Shift+S` शॉर्टकट कुंजी का उपयोग करके मैन्युअल रूप से सक्रिय भी किया जा सकता है। नीचे डाउनलोड चैनल दिए गए हैं: 4 | 5 | - **Chrome**: [Chrome वेब स्टोर](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Microsoft Edge ऐडऑन](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [Firefox ब्राउज़र ऐड-ऑन](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [GitHub रिलीज़](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | इसके अतिरिक्त, हम ऑफ़र करते हैं टैम्परमंकी स्क्रिप्ट — [**ChatGPT शॉर्टकट कहीं भी**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), जो उपयोगकर्ताओं को मिलान करने वाले डोमेन नामों को कस्टमाइज़ करने और किसी भी वेबसाइट पर AiShort साइडबार का उपयोग करने की अनुमति देता है। हालाँकि, ChatGPT पृष्ठों पर स्क्रिप्ट सामग्री इंजेक्शन सीमाओं के कारण, स्क्रिप्ट का साइडबार फ़ंक्शन ChatGPT पृष्ठों पर पॉपअप के माध्यम से सक्रिय होता है। 11 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # एक्सटेंशन उपयोग संबंधी समस्याएँ 2 | 3 | ## ChatGPT एंबेडेड पेज सीमाएँ 4 | 5 | ChatGPT अपने एंबेडेड एक्सटेंशन पेजों पर कई एक्सेस प्रतिबंध लगाता है, खास तौर पर लॉगिन के लिए Google खाता प्राधिकरण के लिए समर्थन की कमी। इसका मतलब है कि उपयोगकर्ताओं को अपने उपयोगकर्ता नाम और पासवर्ड का उपयोग करके लॉग इन करना होगा। 6 | 7 | अगर आपका खाता शुरू में Google प्राधिकरण के ज़रिए बनाया गया था, तो आप नया पासवर्ड सेट करने के लिए "पासवर्ड भूल गए" सुविधा का उपयोग कर सकते हैं। ऐसा करने से यह सुनिश्चित हो जाएगा कि आप ChatGPT एंबेडेड पेज पर सफलतापूर्वक लॉग इन कर सकते हैं। 8 | 9 | ## सामग्री अवरोधन सूचना 10 | 11 | उपयोगकर्ता नाम और पासवर्ड से लॉग इन करने के बाद, आपको कभी-कभी "यह सामग्री अवरुद्ध है" बताते हुए एक सूचना मिल सकती है। ऐसे मामलों में, समस्या को हल करने और लॉगिन के बाद पेज को वापस अपनी सामान्य स्थिति में लाने के लिए अक्सर पेज को फिर से लोड करना ही पर्याप्त होता है। 12 | 13 | यह ध्यान रखना महत्वपूर्ण है कि एकीकृत ChatGPT पेज के भीतर भाषाएँ बदलने से "यह सामग्री अवरुद्ध है" सूचना भी ट्रिगर हो सकती है। इसलिए, मैं सीधे एकीकृत पेज पर भाषाएँ बदलने के बजाय एक्सटेंशन की सेटिंग के ज़रिए भाषाएँ बदलने की सलाह देता हूँ। यह दृष्टिकोण अनावश्यक त्रुटि संदेशों से बचने में मदद कर सकता है। 14 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # फ़ायरफ़ॉक्स सेटिंग्स 2 | 3 | फ़ायरफ़ॉक्स प्लग-इन का उपयोग करने से पहले, इसे निम्न दो चरणों में सेट करने की अनुशंसा की जाती है। 4 | 5 | ## 1. एक्सटेंशन पिनिंग और एक्सेस सेटिंग्स 6 | 7 | सबसे पहले, फ़ायरफ़ॉक्स टूलबार में "पिन चैटजीपीटी शॉर्टकट एक्सटेंशन" चुनें, फिर एक्सटेंशन सेंटर में प्रवेश करें। चैटजीपीटी शॉर्टकट एक्सटेंशन आइटम पर, एक्सटेंशन के सेटिंग इंटरफ़ेस में प्रवेश करने के लिए "विकल्प" चुनें। विशिष्ट चरण निम्न छवि में दिखाए गए अनुसार हैं: 8 | 9 | ![फ़ायरफ़ॉक्स सेटिंग्स](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. एक्सटेंशन ऑपरेशन को अधिकृत करें 12 | 13 | दूसरा, यह सुनिश्चित करने के लिए कि एक्सटेंशन चैटजीपीटी और बार्ड जैसी वेबसाइटों पर सामान्य रूप से काम करता है, आपको इन वेबसाइटों पर एक्सटेंशन आइकन पर राइट-क्लिक करना होगा और "इस साइट पर हमेशा अनुमति दें" का चयन करना होगा। यह क्रिया एक्सटेंशन को निर्दिष्ट वेबसाइटों पर सामग्री को संशोधित करने और साइडबार जोड़ने की अनुमति देती है। 14 | 15 | ![फ़ायरफ़ॉक्स एक्सटेंशन अनुमति](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | सफल स्थापना के बाद, आप [प्लगइन उपयोग ट्यूटोरियल](./usage.md) देख सकते हैं। 18 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Chrome ZIP प्लगइन स्थानीय इंस्टॉलेशन गाइड 2 | 3 | ## प्लगइन डाउनलोड करें 4 | 5 | [GitHub रिलीज़](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) से ChatGPT शॉर्टकट प्लगइन ज़िप इंस्टॉलेशन पैकेज (ChatGPT_Shortcut-zip-3.x.x.zip) डाउनलोड करें और इसे अनज़िप करें। (अनज़िप किए गए फ़ोल्डर को कंप्यूटर पर रखना होगा, इसलिए इसे किसी स्थायी स्थान पर अनज़िप करना याद रखें) 6 | 7 | ## डेवलपर मोड सक्षम करें 8 | 9 | Chrome का "एक्सटेंशन प्रबंधित करें" पृष्ठ खोलें और "डेवलपर मोड" सक्षम करें। 10 | 11 | निम्न पते को कॉपी करें और इसे ब्राउज़र एड्रेस बार में पेस्ट करें, और इसे खोलने के लिए एंटर दबाएँ। पृष्ठ के ऊपरी दाएँ कोने में "डेवलपर मोड" सक्षम करें। 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## प्लगइन इंस्टॉल करें 20 | 21 | इंस्टॉलेशन पूरा करने के लिए अनज़िप किए गए फ़ोल्डर को एक्सटेंशन पेज में खींचें। 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | सफल इंस्टॉलेशन के बाद, आप [प्लगइन उपयोग ट्यूटोरियल](./usage.md) देख सकते हैं। 26 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension.md: -------------------------------------------------------------------------------- 1 | # Chrome CRX प्लगइन स्थानीय इंस्टॉलेशन गाइड 2 | 3 | ## CRX पैकेज डाउनलोड करें 4 | 5 | [GitHub रिलीज़](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) से ChatGPT शॉर्टकट crx इंस्टॉलेशन पैकेज (ChatGPT_Shortcut-crx-3.x.x.zip) डाउनलोड करें और इसे अनज़िप करें (crx फ़ाइल अनज़िप किए गए फ़ोल्डर में है). 6 | 7 | ![](https://img.newzone.top/2024-08-12-21-47-10.png?imageMogr2/format/webp) 8 | 9 | ## डेवलपर मोड सक्षम करें 10 | 11 | Chrome का "एक्सटेंशन प्रबंधित करें" पृष्ठ खोलें और "डेवलपर मोड" सक्षम करें. 12 | 13 | निम्न पते को कॉपी करें और इसे ब्राउज़र एड्रेस बार में पेस्ट करें, फिर इसे खोलने के लिए Enter दबाएँ. पृष्ठ के ऊपरी दाएँ कोने में "डेवलपर मोड" सक्षम करें. 14 | 15 | ```txt 16 | chrome://extensions 17 | ``` 18 | 19 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 20 | 21 | ## प्लगइन इंस्टॉल करें 22 | 23 | प्लगइन इंस्टॉल करें (नोट⚠️: आपको .crx फ़ाइल को ड्रैग करना होगा, [लोड अनज़िप्ड एक्सटेंशन] पर क्लिक न करें) 24 | 25 | ![](https://img.newzone.top/2024-08-12-22-16-38.png?imageMogr2/format/webp) 26 | 27 | सफल इंस्टॉलेशन के बाद, आप [प्लगइन उपयोग ट्यूटोरियल](./usage.md) देख सकते हैं। 28 | 29 | ## इंस्टॉलेशन में समस्याएँ हैं? 30 | 31 | 1. विंडोज उपयोगकर्ता, कृपया जाँचें कि डाउनलोड किया गया इंस्टॉलेशन पैकेज अनज़िप किया गया है या नहीं (खोलने के लिए डबल-क्लिक नहीं किया गया है)? 32 | 33 | 2. क्या "डेवलपर मोड" सक्षम है? यदि नहीं, तो कृपया दूसरे चरण को देखें। 34 | 35 | 3. क्या आपने crx फ़ाइल को "एक्सटेंशन" पृष्ठ पर खींचकर लाया है? नोट⚠️: [अनज़िप्ड एक्सटेंशन लोड करें] पर क्लिक न करें, आपको crx फ़ाइल को खींचकर लाना होगा। 36 | 37 | 4. ब्राउज़र crx फ़ाइल को इंस्टॉल करने की अनुमति नहीं देता है? ज़िप फ़ाइल इंस्टॉल करने का प्रयास करें! [ज़िप इंस्टॉलेशन निर्देश देखने के लिए यहाँ क्लिक करें](./manual-chrome-extension-zip.md)। 38 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # समुदाय सुझाव शब्द 2 | 3 | सामुदायिक सुझाव शब्द सेक्शन उन स्व-परिभाषित सुझाव शब्दों का प्रदर्शन करेगा, जो सदस्यों द्वारा साझा किए गए हैं। आप सुझाव शब्दों को सार्वजनिक पृष्ठ पर साझा कर सकते हैं, साथ ही आप दूसरे लोगों द्वारा साझा किए गए सुझाव शब्दों को देखकर प्रेरणा प्राप्त कर सकते हैं। 4 | 5 | ## वर्गीकरण और मतदान 6 | 7 | समुदाय सुझाव शब्द पृष्ठ पर प्रकाशित होने के समय, प्रदर्शित होने और खोजशब्द फ़िल्टर करने के लिए, आपके पास समय के आधार पर क्रमबद्ध करने और प्रतिस्थापन वोटिंग के विकल्प होंगे। 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | प्रतिस्थापन वोटिंग द्वारा निर्धारित किए जाएंगे जो सुझाव शब्दों को मुख्य पेज पर शामिल किया जाएगा। वर्तमान में, केवल लॉग इन किए गए उपयोगकर्ताओं को मतदान करने की अनुमति है, और एक ही सुझाव शब्द के लिए दोहरे मतदान का अभिलेख केवल हाल के समय को दर्ज करता है। 12 | 13 | ## गोपनीय सुझाव शब्द 14 | 15 | यदि आप अपने गोपनीय सुझाव शब्द सहेजना चाहते हैं, तो सामुदायिक के साथ साझा करने के लिए सुझाव शब्द प्रस्तुत करते समय आप इसे चयनित कर सकते हैं। 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # आरंभ करना 2 | 3 | AiShort का उपयोग करते हुए, आपको निर्दिष्ट दिशा में आउटपुट प्राप्त करने के लिए केवल चयनित प्रॉम्प्ट को किसी भी AI संवाद मॉडल में कॉपी करना होगा। यहाँ विशिष्ट चरण दिए गए हैं: 4 | 5 | 1. अपने इच्छित प्रॉम्प्ट को खोजें या चुनें, और फिर प्रॉम्प्ट पर कॉपी बटन पर क्लिक करें। 6 | 7 | 2. प्रॉम्प्ट को ChatGPT, Gemini या किसी भी AI संवाद मॉडल में कॉपी करें। 8 | 9 | 3. संवाद प्रॉम्प्ट के अनुसार अपनी आवश्यकताएँ दर्ज करें। 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # पसंदीदा और सबमिशन संकेत 2 | 3 | लॉग इन करने के बाद, आप पसंदीदा प्रॉम्प्ट जोड़ने या हटाने, या व्यक्तिगत प्रॉम्प्ट जोड़ने के लिए स्वतंत्र हैं। 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## पसंदीदा प्रॉम्प्ट 10 | 11 | ### पसंदीदा जोड़ें 12 | 13 | लॉग इन करने के बाद, डिफ़ॉल्ट संग्रह लेबल हटा दिए जाएंगे और प्रॉम्प्ट के बगल में "पसंदीदा" बटन प्रदर्शित किया जाएगा। उसके बाद, जब आप किसी पसंदीदा को पसंदीदा बनाते हैं या हटाते हैं, तो पसंदीदा स्थिति का संकेत वास्तविक समय में प्रदर्शित किया जाएगा। 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### पसंदीदा हटाएं 18 | 19 | इसे अपने पसंदीदा से हटाने के लिए पसंदीदा प्रॉम्प्ट के दाईं ओर स्थित हार्ट आइकन पर क्लिक करें। 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## कस्टम संकेत जोड़ें 24 | 25 | प्रॉम्प्ट सबमिट करने के बाद, यह "आपके प्रॉम्प्ट" लेबल के तहत प्रदर्शित किया जाएगा। 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/hi/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # Installa estensione 2 | 3 | AiShort (ChatGPT Shortcut) è un'estensione del browser compatibile con Chrome, Edge, Firefox e altri browser basati su Chromium. Questa estensione non solo offre le funzionalità della versione web di ChatGPT Shortcut, ma presenta anche elementi unici come una barra laterale e l'attivazione automatica delle finestre. Può avviarsi automaticamente con ChatGPT o pagine personalizzate e può anche essere attivata manualmente utilizzando il tasto di scelta rapida `Alt+Shift+S`. Di seguito sono riportati i canali di download: 4 | 5 | - **Chrome**: [Chrome Web Store](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Componenti aggiuntivi Microsoft Edge](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [Componenti aggiuntivi del browser Firefox](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [Rilascio GitHub](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | Inoltre, offriamo uno script Tampermonkey: [**Scorciatoia ChatGPT Ovunque**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), che consente agli utenti di personalizzare i nomi di dominio corrispondenti e di utilizzare la barra laterale AiShort su qualsiasi sito web. Tuttavia, a causa delle limitazioni di iniezione di contenuto dello script sulle pagine ChatGPT, la funzione della barra laterale dello script viene attivata tramite un popup sulle pagine ChatGPT. 11 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # Problemi di utilizzo dell'estensione 2 | 3 | ## Limitazioni della pagina incorporata di ChatGPT 4 | 5 | ChatGPT impone diverse restrizioni di accesso alle sue pagine di estensione incorporate, in particolare la mancanza di supporto per l'autorizzazione dell'account Google per l'accesso. Ciò significa che gli utenti devono accedere utilizzando il proprio nome utente e password. 6 | 7 | Se il tuo account è stato creato inizialmente tramite autorizzazione Google, puoi utilizzare la funzione "Password dimenticata" per impostare una nuova password. In questo modo sarai sicuro di poter accedere correttamente alla pagina incorporata di ChatGPT. 8 | 9 | ## Avviso di blocco dei contenuti 10 | 11 | Dopo aver effettuato l'accesso con nome utente e password, potresti occasionalmente ricevere una notifica che indica "Questo contenuto è bloccato". In tali casi, spesso è sufficiente ricaricare la pagina per risolvere il problema e riportare la pagina al suo stato normale dopo l'accesso. 12 | 13 | È importante notare che anche cambiare lingua all'interno della pagina ChatGPT integrata potrebbe attivare l'avviso "Questo contenuto è bloccato". Pertanto, consiglio di cambiare lingua tramite le impostazioni dell'estensione anziché direttamente sulla pagina integrata. Questo approccio può aiutare a evitare messaggi di errore non necessari. 14 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Impostazioni di Firefox 2 | 3 | Prima di utilizzare il plug-in di Firefox, si consiglia di configurarlo nei due passaggi seguenti. 4 | 5 | ## 1. Impostazioni di accesso e di blocco dell'estensione 6 | 7 | Innanzitutto, seleziona "Blocca estensione collegamento ChatGPT" nella barra degli strumenti di Firefox, quindi accedi al centro estensioni. Nella voce estensione collegamento ChatGPT, seleziona "Opzioni" per accedere all'interfaccia delle impostazioni dell'estensione. I passaggi specifici sono mostrati nell'immagine seguente: 8 | 9 | ![Impostazioni di Firefox](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. Autorizza il funzionamento dell'estensione 12 | 13 | In secondo luogo, per garantire che l'estensione funzioni normalmente su siti Web come ChatGPT e Bard, devi fare clic con il pulsante destro del mouse sull'icona dell'estensione su questi siti Web e selezionare "Consenti sempre su questo sito". Questa azione concede all'estensione l'autorizzazione a modificare il contenuto e aggiungere barre laterali sui siti Web designati. 14 | 15 | ![Permesso estensione Firefox](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | Dopo l'installazione riuscita, puoi visualizzare il [tutorial sull'uso del plugin](./usage.md). 18 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Guida all'installazione locale del plugin ZIP di Chrome 2 | 3 | ## Scarica plugin 4 | 5 | Scarica il pacchetto di installazione Zip del plugin ChatGPT Shortcut (ChatGPT_Shortcut-zip-3.x.x.zip) da [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) e decomprimilo. (La cartella decompressa deve essere conservata sul computer, quindi ricordati di decomprimerla in una posizione permanente) 6 | 7 | ## Abilita la modalità sviluppatore 8 | 9 | Apri la pagina "Gestisci estensioni" di Chrome e abilita la "Modalità sviluppatore". 10 | 11 | Copia il seguente indirizzo e incollalo nella barra degli indirizzi del browser, quindi premi Invio per aprirlo. Abilita la "Modalità sviluppatore" nell'angolo in alto a destra della pagina. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## Installa il plugin 20 | 21 | Trascina la cartella decompressa nella pagina dell'estensione per completare l'installazione. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | Dopo l'installazione riuscita, puoi visualizzare il [Plugin Usage Tutorial](./usage.md). 26 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # Sollecitazioni della Comunità 2 | 3 | La sezione dedicata alle sollecitazioni della comunità presenterà sollecitazioni personalizzate condivise e caricate dagli utenti. Potrai condividere le sollecitazioni in una pagina pubblica e anche visualizzare le sollecitazioni condivise dagli altri per trarne ispirazione. 4 | 5 | ## Ordinamento e Votazione 6 | 7 | La pagina delle sollecitazioni della comunità offre opzioni di ordinamento in base all'orario di pubblicazione, ai voti positivi/negativi e alla ricerca per parole chiave. Sei libero di filtrare le sollecitazioni della comunità secondo le tue preferenze. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | I voti positivi/negativi determineranno le sollecitazioni incluse nella pagina principale. Attualmente, solo gli utenti registrati possono votare e verrà registrato solo l'ultimo voto per la stessa sollecitazione. 12 | 13 | ## Sollecitazioni Private 14 | 15 | Se desideri mantenere le tue sollecitazioni private, puoi scegliere se condividerle o meno con la comunità quando invii o aggiorni le tue sollecitazioni. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # Per iniziare 2 | 3 | Utilizzando AiShort, devi solo copiare il prompt selezionato in qualsiasi modello di dialogo AI per ottenere l'output nella direzione specificata. Ecco i passaggi specifici: 4 | 5 | 1. Cerca o seleziona il prompt desiderato, quindi fai clic sul pulsante Copia sul prompt. 6 | 7 | 2. Copia il prompt in ChatGPT, Gemini o qualsiasi modello di dialogo AI. 8 | 9 | 3. Inserisci i tuoi requisiti in base al prompt di dialogo. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # Favoriti e suggerimenti per l'invio di contributi 2 | 3 | Dopo aver effettuato il login, si è liberi di aggiungere o rimuovere i suggerimenti preferiti o di aggiungere suggerimenti personali. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## Prompt preferito 10 | 11 | ### Aggiungi preferiti 12 | 13 | Dopo l'accesso, le etichette di raccolta predefinite saranno rimosse e il pulsante "Preferiti" sarà visualizzato accanto al prompt. In seguito, quando si favorisce o si rimuove un preferito, verrà visualizzato in tempo reale un suggerimento sullo stato del preferito. 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### Rimuovere i preferiti 18 | 19 | Clicca sull'icona a forma di cuore situata sul lato destro di una sollecitazione preferita per rimuoverla dai tuoi preferiti. 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## Aggiungi Sollecitazioni Personalizzate 24 | 25 | Dopo aver inviato una sollecitazione, verrà visualizzata sotto l'etichetta "Le Tue Sollecitazioni". 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # 拡張機能のインストール 2 | 3 | AiShort (ChatGPT ショートカット) は、Chrome、Edge、Firefox、その他の Chromium ベースのブラウザーと互換性のあるブラウザー拡張機能です。この拡張機能は、ChatGPT ショートカットの Web バージョンの機能を提供するだけでなく、サイドバーや自動ウィンドウ アクティベーションなどの独自の要素も備えています。ChatGPT またはカスタム ページで自動的に起動することも、`Alt+Shift+S` ショートカット キーを使用して手動でアクティブ化することもできます。ダウンロード チャネルは次のとおりです: 4 | 5 | - **Chrome**: [Chrome ウェブストア](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Microsoft Edge アドオン](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [Firefox ブラウザー アドオン](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [GitHub リリース](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | さらに、Tampermonkey スクリプトも提供しています — [**ChatGPT ショートカット Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere) では、ユーザーは一致するドメイン名をカスタマイズし、どの Web サイトでも AiShort サイドバーを使用できます。ただし、ChatGPT ページにはスクリプト コンテンツ挿入の制限があるため、スクリプトのサイドバー機能は ChatGPT ページ上のポップアップを介してアクティブ化されます。 -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # 拡張機能の使用に関する問題 2 | 3 | ## ChatGPT 埋め込みページの制限 4 | 5 | ChatGPT は、埋め込み拡張機能ページにいくつかのアクセス制限を課しています。特に、ログインに Google アカウント認証がサポートされていないことが挙げられます。つまり、ユーザーはユーザー名とパスワードを使用してログインする必要があります。 6 | 7 | アカウントが最初に Google 認証によって作成された場合は、「パスワードを忘れた場合」機能を使用して新しいパスワードを設定できます。そうすることで、ChatGPT 埋め込みページに正常にログインできるようになります。 8 | 9 | ## コンテンツ ブロックに関する通知 10 | 11 | ユーザー名とパスワードを使用してログインした後、「このコンテンツはブロックされています」という通知が表示されることがあります。このような場合は、ページを再読み込みするだけで問題が解決し、ログイン後の通常の状態に戻ることがよくあります。 12 | 13 | 統合された ChatGPT ページ内で言語を切り替えると、「このコンテンツはブロックされています」という通知が表示される場合もあることに注意してください。したがって、統合されたページから直接言語を変更するのではなく、拡張機能の設定から言語を変更することをお勧めします。この方法は、不要なエラー メッセージを回避するのに役立ちます。 14 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Firefox の設定 2 | 3 | Firefox プラグインを使用する前に、次の 2 つの手順で設定することをお勧めします。 4 | 5 | ## 1. 拡張機能のピン留めとアクセス設定 6 | 7 | まず、Firefox ツールバーで [ChatGPT ショートカット拡張機能をピン留め] を選択し、拡張機能センターに入ります。ChatGPT ショートカット拡張機能項目で、[オプション] を選択して拡張機能の設定インターフェイスに入ります。具体的な手順は次の画像のとおりです。 8 | 9 | ![Firefox の設定](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. 拡張機能の操作を許可する 12 | 13 | 次に、ChatGPT や Bard などの Web サイトで拡張機能が正常に機能するようにするには、これらの Web サイトで拡張機能アイコンを右クリックし、[このサイトで常に許可] を選択する必要があります。このアクションにより、拡張機能に、指定された Web サイトでコンテンツを変更したりサイドバーを追加したりする権限が付与されます。 14 | 15 | ![Firefox 拡張機能の許可](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | インストールが成功すると、[プラグインの使用チュートリアル](./usage.md) を表示できます。 18 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Chrome ZIP プラグインのローカル インストール ガイド 2 | 3 | ## プラグインのダウンロード 4 | 5 | [GitHub リリース](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) から ChatGPT ショートカット プラグインの Zip インストール パッケージ (ChatGPT_Shortcut-zip-3.x.x.zip) をダウンロードし、解凍します。(解凍したフォルダーはコンピューター上に保存する必要があるため、必ず永続的な場所に解凍してください) 6 | 7 | ## 開発者モードを有効にする 8 | 9 | Chrome の [拡張機能の管理] ページを開き、[開発者モード] を有効にします。 10 | 11 | 次のアドレスをコピーしてブラウザーのアドレス バーに貼り付け、Enter キーを押して開きます。ページの右上隅で [開発者モード] を有効にします。 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## プラグインをインストール 20 | 21 | 解凍したフォルダを拡張機能ページにドラッグしてインストールを完了します。 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | インストールが成功したら、[プラグインの使用チュートリアル](./usage.md) を表示できます。 26 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension.md: -------------------------------------------------------------------------------- 1 | # Chrome CRX プラグインのローカル インストール ガイド 2 | 3 | ## CRX パッケージをダウンロード 4 | 5 | [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) から ChatGPT Shortcut crx インストール パッケージ (ChatGPT_Shortcut-crx-3.x.x.zip) をダウンロードし、解凍します (crx ファイルは解凍されたフォルダー内にあります)。 6 | 7 | ![](https://img.newzone.top/2024-08-12-21-47-10.png?imageMogr2/format/webp) 8 | 9 | ## 開発者モードを有効にする 10 | 11 | Chrome の [拡張機能の管理] ページを開き、[開発者モード] を有効にします。 12 | 13 | 次のアドレスをコピーしてブラウザのアドレス バーに貼り付け、Enter キーを押して開きます。ページの右上隅で [開発者モード] を有効にします。 14 | 15 | ```txt 16 | chrome://extensions 17 | ``` 18 | 19 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 20 | 21 | ## プラグインをインストール 22 | 23 | プラグインをインストール (注⚠️: .crx ファイルをドラッグする必要があります。[解凍された拡張機能を読み込む] をクリックしないでください) 24 | 25 | ![](https://img.newzone.top/2024-08-12-22-16-38.png?imageMogr2/format/webp) 26 | 27 | インストールが成功したら、[プラグインの使用チュートリアル](./usage.md) を表示できます。 28 | 29 | ## インストールで問題がありますか? 30 | 31 | 1. Windows ユーザーは、ダウンロードしたインストール パッケージが解凍されているかどうか (ダブルクリックして開いていないかどうか) を確認してください。 32 | 33 | 2. 「開発者モード」は有効になっていますか?そうでない場合は、2 番目の手順を参照してください。 34 | 35 | 3. crx ファイルを「拡張機能」ページにドラッグしましたか?注意⚠️: [解凍された拡張機能を読み込む] をクリックしないでください。crx ファイルをドラッグする必要があります。 36 | 37 | 4. ブラウザで crx ファイルのインストールが許可されていませんか?zip ファイルをインストールしてみてください。[zip インストール手順を表示するには、ここをクリックしてください](./manual-chrome-extension-zip.md)。 38 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/extension/usage.md: -------------------------------------------------------------------------------- 1 | # ブラウザ拡張機能の使い方 2 | 3 | ChatGPT ショートカットは 13 の主流言語をサポートしており、拡張機能の言語はブラウザ環境に応じて自動的に設定されます。拡張機能内の ChatGPT 組み込みページとサイドバーの言語もこの設定に従います。サードパーティの Web サイトの権限アラートをトリガーしないようにするには、埋め込みページの言語を直接変更しないでください。 4 | 5 | ![](https://img.newzone.top/2023-12-23-12-04-29.png?imageMogr2/format/webp) 6 | 7 | ## 表示設定 8 | 9 | ### AiShort サイドバー 10 | 11 | AiShort サイドバーを有効にすると、サポートされている Web ページの右下隅に緑色のアイコン スイッチが表示されます。このアイコンをクリックすると、サイドバーのオン/オフを切り替えることができます。現在、デフォルトで ChatGPT、Bard、Claude、Wenxin Yiyan をサポートしています。 「サイドバーを自動的にアクティブにする」を選択した場合、サポートされているこれらのサイトにアクセスすると、サイドバーが自動的に開きます。 12 | 13 | ![](https://img.newzone.top/2023-12-23-04-16-15.gif?imageMogr2/format/webp) 14 | 15 | 他のウェブサイトで AiShort サイドバーを使用する場合は、[ChatGPT Shortcut Anywhere](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere) スクリプトをインストールしてください。重複する機能や潜在的な競合を避けるため、ChatGPT Shortcut Anywhere スクリプトは、拡張機能によってネイティブにサポートされているウェブサイトでは機能しません。 16 | 17 | ### 組み込みホームページ 18 | 19 | 組み込みホームページ機能を有効にすると、ChatGPT ウェブバージョンの左上隅に組み込みページのボタンが表示されます。これをクリックすると、ChatGPT アプリのインターフェースが AiShort ページに置き換えられます。 20 | 21 | ![](https://img.newzone.top/ai/2023-12-22-19-40-15.png?imageMogr2/format/webp) 22 | 23 | ## 別ウィンドウ モード 24 | 25 | 別ウィンドウ モードを有効にすると、拡張機能のインターフェイスが別ウィンドウに永続的に表示され、マルチタスクが容易になります。拡張機能の設定で、Web サイトを自動的にアクティブ化するように設定できます。ブラウザーがこれらのサイトにアクセスすると、AiShort ウィンドウが自動的にアクティブ化されます。 26 | 27 | ![](https://img.newzone.top/2023-12-23-12-07-09.png?imageMogr2/format/webp) 28 | 29 | ### 自動アクティブ化 Web サイト 30 | 31 | 拡張機能の設定では、AiShort の別ウィンドウを自動的にアクティブ化する Web サイトを指定できます。 32 | 33 | ![](https://img.newzone.top/2023-12-23-12-09-51.png?imageMogr2/format/webp) 34 | 35 | ### ホットキーのアクティブ化 36 | 37 | ポップアップ モードでも別ウィンドウ モードでも、`Alt+Shift+S` ショートカット キーを使用して AiShort ウィンドウを直接アクティブ化できます。 38 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # 社区提示フレーズ 2 | 3 | コミュニティのヒントフレーズセクションでは、ユーザーが共有やアップロードしたカスタムのヒントフレーズが表示されます。ヒントフレーズを公開ページに共有することもできますし、他の人が共有したヒントフレーズを閲覧してインスピレーションを得ることもできます。 4 | 5 | ## ソートと投票 6 | 7 | コミュニティのヒントフレーズページでは、投稿時間、賛成/反対投票のソート、およびキーワード検索のオプションが提供されます。自由にコミュニティのヒントフレーズを絞り込むことができます。 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | 賛成/反対投票は、ホームページに収録されるヒントフレーズを決定します。現在、投票はログインユーザーのみが行うことができ、同じヒントフレーズに対する重複投票は最新の一回のみが記録されます。 12 | 13 | ## プライベートなヒントフレーズ 14 | 15 | プライベートなヒントフレーズを保存したい場合は、ヒントフレーズの提出や更新時にコミュニティと共有するかどうかを選択することができます。 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # はじめに 2 | 3 | AiShort を使用すると、選択したプロンプトを任意の AI ダイアログ モデルにコピーするだけで、指定した方向の出力を取得できます。具体的な手順は次のとおりです。 4 | 5 | 1. 必要なプロンプトを検索または選択し、プロンプトのコピー ボタンをクリックします。 6 | 7 | 2. プロンプトを ChatGPT、Gemini、または任意の AI ダイアログ モデルにコピーします。 8 | 9 | 3. ダイアログ プロンプトに従って要件を入力します。 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # お気に入りと投稿プロンプト 2 | 3 | ログイン後、お気に入りのプロンプトを追加または削除したり、個人的なプロンプトを追加したりすることができます。 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## お気に入りのプロンプト 10 | 11 | ### お気に入りの追加 12 | 13 | ログイン後、デフォルトのコレクションラベルが削除され、プロンプトの横に「お気に入り」ボタンが表示されます。その後、お気に入り登録や削除を行うと、リアルタイムでお気に入り登録状況のヒントが表示されます。 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### お気に入りの削除 18 | 19 | お気に入りのプロンプトの右側にあるハートアイコンをクリックすると、そのプロンプトがお気に入りから削除されます。 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## カスタムプロンプトの追加 24 | 25 | プロンプトを提出すると、「あなたのプロンプト」ラベルの下に表示されます。 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/introduction.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: / 3 | --- 4 | 5 | # 導入 6 | 7 | AiShort は、簡潔で使いやすい AI 指示のリストを提供します。プロンプトの理解がなくても、フィルタリングと検索を通じて様々なシナリオに適したプロンプトを簡単に見つけることができ、生産性を向上させます。 8 | 9 | 🚀 **ワンクリックプロンプト**: ただ一つのクリックで、専門家によって慎重に選ばれたさまざまなプロンプトを取得することができます。それらを ChatGPT のような AI 言語モデルに送ると、期待した出力を得ることができます。 10 | 11 | 💻 **生産性の向上**: 最適化されたプロンプトを使用することで、より正確で実用的なフィードバックを得られ、効果的に作業効率を向上させます。 12 | 13 | 🌍 **非英語言語のための最適化**: 英語のプロンプトに対する 12 の主要な世界言語の翻訳を提供し、母国語でのデフォルトのレスポンスをサポートします。これにより、非英語話者が理解しやすく、使いやすくなります。 14 | 15 | 💾 **プロンプトの保存**: お気に入りのプロンプトを便利に収集、編集、管理し、将来の使用のために保存します。 16 | 17 | 🌐 **プロンプトの共有**: お気に入りのプロンプトを共有し、他の人と協力し、さらに多くのアイデアを生み出します。 18 | 19 | 🗳️ **コミュニティ投票システム**: Product Hunt や Reddit のように、プラットフォームはコミュニティ駆動型です。最高のプロンプトはホームページに推されます。 20 | 21 | 📦 **すぐに使用可能**: https://www.aishort.top/ja/ を訪問してすぐに使用を開始します。 22 | 23 | AiShort のプロンプトの源は、インターネットの選択、コミュニティの共有、そして[Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts)によるものです。私たちは定期的に更新を行い、新しいプロンプトとインスピレーションを提供します。 24 | 25 | アイデアとフィードバックを交換するために、私たちの Discord コミュニティに参加することを歓迎します。 26 | 27 | 28 | Discord でチャットする 29 | 30 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "AI Short", 4 | "description": "The title in the navbar" 5 | }, 6 | "logo.alt": { 7 | "message": "ChatGPT Shortcuts", 8 | "description": "The alt text of navbar logo" 9 | }, 10 | "item.label.📘 使用说明": { 11 | "message": "📘 使用説明書", 12 | "description": "Navbar item with label 📘 使用说明" 13 | }, 14 | "item.label.🏘️ 社区提示词": { 15 | "message": "🏘️ コミュニティプロンプト", 16 | "description": "Navbar item with label 🏘️ 社区提示词" 17 | }, 18 | "item.label.🛠️ 应用工具": { 19 | "message": "🛠️ ツール", 20 | "description": "Navbar item with label 🛠️ 应用工具" 21 | }, 22 | "item.label.IMGPrompt": { 23 | "message": "IMGPrompt", 24 | "description": "Navbar item with label IMGPrompt" 25 | }, 26 | "item.label.文字处理": { 27 | "message": "その他のツール", 28 | "description": "Navbar item with label 文字处理" 29 | }, 30 | "item.label.工具收藏": { 31 | "message": "ツールコレクション", 32 | "description": "Navbar item with label 工具收藏" 33 | }, 34 | "item.label.Find on Product Hunt": { 35 | "message": "Product Hunt で見つける", 36 | "description": "Navbar item with label Find on Product Hunt" 37 | }, 38 | "item.label.反馈建议": { 39 | "message": "フィードバック", 40 | "description": "Navbar item with label 反馈建议" 41 | }, 42 | "item.label.📝 提交反馈": { 43 | "message": "📝 フィードバックを送信", 44 | "description": "Navbar item with label 📝 提交反馈" 45 | }, 46 | "item.label.💬 加入 QQ 群": { 47 | "message": "💬 QQ でチャット", 48 | "description": "Navbar item with label 💬 加入 QQ 群" 49 | }, 50 | "item.label.📺 加入 Discord": { 51 | "message": "📺 Discord に参加", 52 | "description": "Navbar item with label 📺 加入 Discord" 53 | }, 54 | "item.label.脚本扩展": { 55 | "message": "拡張機能", 56 | "description": "Navbar item with label 脚本扩展" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # 확장 프로그램 설치 2 | 3 | AiShort(ChatGPT Shortcut) 는 Chrome, Edge, Firefox 및 기타 Chromium 기반 브라우저와 호환되는 브라우저 확장 프로그램입니다. 이 확장 프로그램은 ChatGPT Shortcut 웹 버전의 기능을 제공할 뿐만 아니라 사이드바 및 자동 창 활성화와 같은 고유한 요소도 제공합니다. ChatGPT 또는 사용자 지정 페이지로 자동으로 시작할 수 있으며 `Alt+Shift+S` 단축키를 사용하여 수동으로 활성화할 수도 있습니다. 다운로드 채널은 다음과 같습니다. 4 | 5 | - **Chrome**: [Chrome 웹 스토어](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Microsoft Edge 애드온](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [Firefox 브라우저 애드온](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [GitHub 릴리스](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | 또한 Tampermonkey 스크립트인 [**ChatGPT Shortcut] 을 제공합니다. Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere)는 사용자가 일치하는 도메인 이름을 사용자 지정하고 모든 웹사이트에서 AiShort 사이드바를 사용할 수 있도록 합니다. 그러나 ChatGPT 페이지에서 스크립트 콘텐츠 주입 제한으로 인해 스크립트의 사이드바 기능은 ChatGPT 페이지에서 팝업을 통해 활성화됩니다. -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # 확장 프로그램 사용 문제 2 | 3 | ## ChatGPT 내장 페이지 제한 4 | 5 | ChatGPT 는 내장된 확장 프로그램 페이지에 여러 가지 액세스 제한을 가하는데, 특히 로그인을 위한 Google 계정 인증 지원이 부족합니다. 즉, 사용자는 사용자 이름과 비밀번호를 사용하여 로그인해야 합니다. 6 | 7 | 처음에 Google 인증을 통해 계정을 만든 경우 "비밀번호 찾기" 기능을 사용하여 새 비밀번호를 설정할 수 있습니다. 이렇게 하면 ChatGPT 내장 페이지에 성공적으로 로그인할 수 있습니다. 8 | 9 | ## 콘텐츠 차단 알림 10 | 11 | 사용자 이름과 비밀번호로 로그인한 후 가끔 "이 콘텐츠는 차단되었습니다."라는 알림이 표시될 수 있습니다. 이런 경우 페이지를 다시 로드하기만 해도 문제가 해결되고 로그인 후 페이지가 정상 상태로 돌아가는 경우가 많습니다. 12 | 13 | 통합된 ChatGPT 페이지 내에서 언어를 전환하면 "이 콘텐츠는 차단되었습니다."라는 알림이 표시될 수도 있다는 점에 유의하는 것이 중요합니다. 따라서 통합된 페이지에서 직접 변경하는 것보다 확장 프로그램 설정을 통해 언어를 변경하는 것이 좋습니다. 이 방법을 사용하면 불필요한 오류 메시지를 방지하는 데 도움이 될 수 있습니다. -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Firefox 설정 2 | 3 | Firefox 플러그인을 사용하기 전에 다음 두 단계로 설정하는 것이 좋습니다. 4 | 5 | ## 1. 확장 프로그램 고정 및 액세스 설정 6 | 7 | 먼저 Firefox 툴바에서 "ChatGPT 바로가기 확장 프로그램 고정"을 선택한 다음 확장 프로그램 센터로 들어갑니다. ChatGPT 바로가기 확장 프로그램 항목에서 "옵션"을 선택하여 확장 프로그램의 설정 인터페이스로 들어갑니다. 구체적인 단계는 다음 이미지에 나와 있습니다. 8 | 9 | ![Firefox 설정](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. 확장 프로그램 작업 승인 12 | 13 | 둘째, ChatGPT 및 Bard 와 같은 웹사이트에서 확장 프로그램이 정상적으로 작동하도록 하려면 이러한 웹사이트에서 확장 프로그램 아이콘을 마우스 오른쪽 버튼으로 클릭하고 "이 사이트에서 항상 허용"을 선택해야 합니다. 이 작업을 수행하면 확장 프로그램에 지정된 웹사이트에서 콘텐츠를 수정하고 사이드바를 추가할 수 있는 권한이 부여됩니다. 14 | 15 | ![Firefox 확장 프로그램 권한](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | 성공적으로 설치한 후 [플러그인 사용 튜토리얼](./usage.md)을 볼 수 있습니다. -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Chrome ZIP 플러그인 로컬 설치 가이드 2 | 3 | ## 플러그인 다운로드 4 | 5 | [GitHub 릴리스](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest)에서 ChatGPT Shortcut 플러그인 Zip 설치 패키지 (ChatGPT_Shortcut-zip-3.x.x.zip) 를 다운로드하고 압축을 풉니다. (압축을 푼 폴더는 컴퓨터에 보관해야 하므로 영구적인 위치에 압축을 풉니다.) 6 | 7 | ## 개발자 모드 활성화 8 | 9 | Chrome 의 "확장 프로그램 관리" 페이지를 열고 "개발자 모드"를 활성화합니다. 10 | 11 | 다음 주소를 복사하여 브라우저 주소창에 붙여넣고 Enter 키를 눌러 엽니다. 페이지의 오른쪽 상단 모서리에서 "개발자 모드"를 활성화합니다. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## 플러그인 설치 20 | 21 | 압축 해제된 폴더를 확장 프로그램 페이지로 끌어서 설치를 완료합니다. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | 설치가 성공적으로 완료되면 [플러그인 사용 튜토리얼](./usage.md)을 볼 수 있습니다. 26 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension.md: -------------------------------------------------------------------------------- 1 | # Chrome CRX 플러그인 로컬 설치 가이드 2 | 3 | ## CRX 패키지 다운로드 4 | 5 | [GitHub 릴리스](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest)에서 ChatGPT Shortcut crx 설치 패키지 (ChatGPT_Shortcut-crx-3.x.x.zip) 를 다운로드하고 압축을 풉니다 (crx 파일은 압축 해제된 폴더에 있습니다). 6 | 7 | ![](https://img.newzone.top/2024-08-12-21-47-10.png?imageMogr2/format/webp) 8 | 9 | ## 개발자 모드 활성화 10 | 11 | Chrome 의 "확장 프로그램 관리" 페이지를 열고 "개발자 모드"를 활성화합니다. 12 | 13 | 다음 주소를 복사하여 브라우저 주소창에 붙여넣은 다음 Enter 키를 눌러 엽니다. 페이지의 오른쪽 상단 모서리에서 "개발자 모드"를 활성화합니다. 14 | 15 | ```txt 16 | chrome://extensions 17 | ``` 18 | 19 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 20 | 21 | ## 플러그인 설치 22 | 23 | 플러그인 설치 (참고⚠️: .crx 파일을 드래그해야 하며 [압축 해제된 확장 프로그램 로드]를 클릭하지 마세요) 24 | 25 | ![](https://img.newzone.top/2024-08-12-22-16-38.png?imageMogr2/format/webp) 26 | 27 | 설치가 성공적으로 완료되면 [플러그인 사용 튜토리얼](./usage.md)을 볼 수 있습니다. 28 | 29 | ## 설치에 문제가 있나요? 30 | 31 | 1. Windows 사용자는 다운로드한 설치 패키지가 압축 해제되었는지 (더블 클릭해서 열지 않았는지) 확인하세요. 32 | 33 | 2. "개발자 모드"가 활성화되어 있나요? 그렇지 않은 경우, 두 번째 단계를 참조하세요. 34 | 35 | 3. crx 파일을 "확장 프로그램" 페이지로 끌어왔나요? 참고⚠️: [압축 해제된 확장 프로그램 로드]를 클릭하지 마세요. crx 파일을 끌어와야 합니다. 36 | 37 | 4. 브라우저에서 crx 파일을 설치할 수 없나요? zip 파일을 설치해보세요! [zip 설치 지침을 보려면 여기를 클릭하세요](./manual-chrome-extension-zip.md). 38 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/extension/usage.md: -------------------------------------------------------------------------------- 1 | # 브라우저 확장 프로그램을 사용하는 방법? 2 | 3 | ChatGPT Shortcut 은 13 개의 주요 언어를 지원하며, 확장 프로그램 언어는 브라우저 환경에 따라 자동으로 설정됩니다. 확장 프로그램의 ChatGPT 내장 페이지와 사이드바 언어도 이 설정을 따릅니다. 타사 웹사이트의 권한 알림을 트리거하지 않으려면 내장된 페이지에서 언어를 직접 변경하지 마십시오. 4 | 5 | ![](https://img.newzone.top/2023-12-23-12-04-29.png?imageMogr2/format/webp) 6 | 7 | ## 디스플레이 설정 8 | 9 | ### AiShort 사이드바 10 | 11 | AiShort 사이드바를 활성화하면 지원되는 웹 페이지의 오른쪽 하단에 녹색 아이콘 스위치가 표시됩니다. 이 아이콘을 클릭하면 사이드바를 켜거나 끌 수 있습니다. 현재는 기본적으로 ChatGPT, Bard, Claude, Wenxin Yiyan 을 지원합니다. "사이드바를 자동으로 활성화"를 선택하면 이러한 지원되는 사이트를 방문할 때 사이드바가 자동으로 열립니다. 12 | 13 | ![](https://img.newzone.top/2023-12-23-04-16-15.gif?imageMogr2/format/webp) 14 | 15 | 다른 웹사이트에서 AiShort 사이드바를 사용하려면 [ChatGPT Shortcut Anywhere](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere) 스크립트를 설치하세요. 중복되는 기능과 잠재적 충돌을 방지하기 위해 ChatGPT Shortcut Anywhere 스크립트는 확장 프로그램에서 기본적으로 지원하는 웹사이트에서는 효과가 없습니다. 16 | 17 | ### 내장 홈페이지 18 | 19 | 내장 홈페이지 기능을 활성화하면 내장 페이지의 버튼이 ChatGPT 웹 버전의 왼쪽 상단에 나타납니다. 이를 클릭하면 ChatGPT 앱 인터페이스가 AiShort 페이지로 바뀝니다. 20 | 21 | ![](https://img.newzone.top/ai/2023-12-22-19-40-15.png?imageMogr2/format/webp) 22 | 23 | ## 별도 창 모드 24 | 25 | 별도 창 모드가 활성화되면 확장 프로그램 인터페이스가 별도의 창에 지속적으로 나타나 멀티태스킹이 용이해집니다. 확장 프로그램 설정에서 자동 활성화를 위한 웹사이트를 설정할 수 있습니다. 브라우저가 이러한 사이트를 방문하면 AiShort 창이 자동으로 활성화됩니다. 26 | 27 | ![](https://img.newzone.top/2023-12-23-12-07-09.png?imageMogr2/format/webp) 28 | 29 | ### 자동 활성화 웹사이트 30 | 31 | 확장 프로그램 설정에서 AiShort 별도 창을 자동으로 활성화할 웹사이트를 지정할 수 있습니다. 32 | 33 | ![](https://img.newzone.top/2023-12-23-12-09-51.png?imageMogr2/format/webp) 34 | 35 | ### 단축키 활성화 36 | 37 | `Alt+Shift+S` 단축키는 팝업 모드나 별도 창 모드에서 AiShort 창을 직접 활성화하는 데 사용할 수 있습니다. 38 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # 지역사회 안내어 2 | 3 | 지역사회 안내어 게시판은 사용자들이 공유하고 업로드한 사용자 정의 안내어를 보여줍니다. 당신은 안내어를 공개 페이지에 공유할 수 있으며, 또한 다른 사람들이 공유한 안내어를 살펴보아 영감을 얻을 수도 있습니다. 4 | 5 | ## 정렬과 투표 6 | 7 | 지역사회 안내어 페이지는 게시 시간, 좋아요/싫어요 투표 정렬, 키워드 검색 옵션을 제공하며, 당신은 자유롭게 지역사회 안내어를 필터링할 수 있습니다. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | 좋아요/싫어요 투표는 홈페이지에 수록되는 안내어를 결정합니다. 현재 투표는 로그인한 사용자에게만 제한되며, 동일한 안내어에 대한 중복 투표는 최근 한 번만 기록됩니다. 12 | 13 | ## 비밀 안내어 14 | 15 | 만약 당신이 비밀 안내어를 보관하고 싶다면, 안내어를 제출하거나 업데이트할 때 커뮤니티와 공유할지 선택할 수 있습니다. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # 시작하기 2 | 3 | AiShort 를 사용하면 선택한 프롬프트를 모든 AI 대화 모델에 복사하기만 하면 지정된 방향으로 출력이 나옵니다. 구체적인 단계는 다음과 같습니다. 4 | 5 | 1. 원하는 프롬프트를 검색하거나 선택한 다음 프롬프트에서 복사 버튼을 클릭합니다. 6 | 7 | 2. 프롬프트를 ChatGPT, Gemini 또는 모든 AI 대화 모델에 복사합니다. 8 | 9 | 3. 대화 프롬프트에 따라 요구 사항을 입력합니다. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # 즐겨찾기 및 제출 프롬프트 2 | 3 | 로그인 후 즐겨찾는 프롬프트를 추가 또는 제거하거나 개인 프롬프트를 자유롭게 추가할 수 있습니다. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## 즐겨찾기 프롬프트 10 | 11 | ### 즐겨찾기 추가 12 | 13 | 로그인하면 기본 컬렉션 라벨이 제거되고 프롬프트 옆에 '즐겨찾기' 버튼이 표시됩니다. 그 후 즐겨찾기를 추가하거나 삭제하면 즐겨찾기 상태에 대한 힌트가 실시간으로 표시됩니다. 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### 즐겨찾기 제거하기 18 | 19 | 즐겨찾기한 프롬프트 오른쪽에 있는 하트 아이콘을 클릭하여 즐겨찾기에서 제거할 수 있습니다. 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## 사용자 정의 프롬프트 추가 24 | 25 | 프롬프트를 제출한 후, 해당 프롬프트가 "Your Prompts" 레이블 아래에 표시됩니다. 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/introduction.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: / 3 | --- 4 | 5 | # 소개 6 | 7 | AiShort 는 간결하면서 사용하기 쉬운 AI 명령어 리스트를 제공합니다. 프롬프트에 대한 이해가 없어도, 필터링과 검색을 통해 다양한 상황에 적합한 프롬프트를 쉽게 찾을 수 있어 생산성 향상에 도움이 됩니다. 8 | 9 | 🚀 **원클릭 프롬프트**: 한 번의 클릭만으로 전문가들이 세심하게 선택한 다양한 프롬프트를 얻을 수 있습니다. 이들을 AI 언어 모델인 ChatGPT 에 보내면 예상한 출력을 얻을 수 있습니다. 10 | 11 | 💻 **생산성 향상**: 최적화된 프롬프트를 사용하면 더 정확하고 실용적인 피드백을 얻을 수 있어, 작업 효율을 효과적으로 향상시킵니다. 12 | 13 | 🌍 **비영어권 언어 최적화**: 우리는 12 개의 주요 글로벌 언어로 영어 프롬프트의 번역을 제공하며, 모국어로의 기본 응답을 지원합니다. 이는 비영어권 사용자가 이해하고 사용하는 데 편리합니다. 14 | 15 | 💾 **프롬프트 저장**: 앞으로 사용할 수 있도록 좋아하는 프롬프트를 편리하게 수집, 편집, 관리할 수 있습니다. 16 | 17 | 🌐 **프롬프트 공유**: 좋아하는 프롬프트를 공유하고, 다른 사람과 협업하고, 더 많은 아이디어를 불러일으킵니다. 18 | 19 | 🗳️ **커뮤니티 투표 시스템**: Product Hunt 이나 Reddit 과 비슷하게, 플랫폼은 커뮤니티 주도입니다. 최고의 프롬프트는 홈페이지로 밀려납니다. 20 | 21 | 📦 **사용 준비 완료**: 바로 https://www.aishort.top/ko/ 을 방문하여 사용을 시작하세요. 22 | 23 | AiShort 프롬프트의 출처는 인터넷 선택, 커뮤니티 공유, 그리고 [Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts)를 포함합니다. 우리는 규칙적으로 새로운 프롬프트와 영감을 제공하기 위해 업데이트할 것입니다. 24 | 25 | 아이디어와 피드백을 교환하기 위해 우리의 디스코드 커뮤니티에 참여하십시오. 26 | 27 | 28 | chat on Discord 29 | 30 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "AI Short", 4 | "description": "The title in the navbar" 5 | }, 6 | "logo.alt": { 7 | "message": "ChatGPT Shortcuts", 8 | "description": "The alt text of navbar logo" 9 | }, 10 | "item.label.📘 使用说明": { 11 | "message": "📘 문서", 12 | "description": "Navbar item with label 📘 使用说明" 13 | }, 14 | "item.label.🏘️ 社区提示词": { 15 | "message": "🏘️ 커뮤니티 프롬프트", 16 | "description": "Navbar item with label 🏘️ 社区提示词" 17 | }, 18 | "item.label.🛠️ 应用工具": { 19 | "message": "🛠️ 도구", 20 | "description": "Navbar item with label 🛠️ 应用工具" 21 | }, 22 | "item.label.IMGPrompt": { 23 | "message": "IMGPrompt", 24 | "description": "Navbar item with label IMGPrompt" 25 | }, 26 | "item.label.文字处理": { 27 | "message": "기타 도구", 28 | "description": "Navbar item with label 文字处理" 29 | }, 30 | "item.label.工具收藏": { 31 | "message": "도구 모음", 32 | "description": "Navbar item with label 工具收藏" 33 | }, 34 | "item.label.Find on Product Hunt": { 35 | "message": "Product Hunt 에서 찾기", 36 | "description": "Navbar item with label Find on Product Hunt" 37 | }, 38 | "item.label.反馈建议": { 39 | "message": "피드백", 40 | "description": "Navbar item with label 反馈建议" 41 | }, 42 | "item.label.📝 提交反馈": { 43 | "message": "📝 피드백 제출", 44 | "description": "Navbar item with label 📝 提交反馈" 45 | }, 46 | "item.label.💬 加入 QQ 群": { 47 | "message": "💬 QQ 에서 채팅하기", 48 | "description": "Navbar item with label 💬 加入 QQ 群" 49 | }, 50 | "item.label.📺 加入 Discord": { 51 | "message": "📺 Discord 에 참여하기", 52 | "description": "Navbar item with label 📺 加入 Discord" 53 | }, 54 | "item.label.脚本扩展": { 55 | "message": "확장 기능", 56 | "description": "Navbar item with label 脚本扩展" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # Instalar extensão 2 | 3 | AiShort (ChatGPT Shortcut) é uma extensão de navegador compatível com Chrome, Edge, Firefox e outros navegadores baseados em Chromium. Esta extensão não só oferece as funcionalidades da versão web do ChatGPT Shortcut, mas também apresenta elementos exclusivos como uma barra lateral e ativação automática de janela. Ele pode iniciar automaticamente com ChatGPT ou páginas personalizadas e também pode ser ativado manualmente usando a tecla de atalho `Alt+Shift+S`. Abaixo estão os canais de download: 4 | 5 | - **Chrome**: [Chrome Web Store](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Microsoft Edge Addons](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [ADD-ONS do navegador Firefox](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [Lançamento do GitHub](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | Além disso, oferecemos um script Tampermonkey — [**ChatGPT Shortcut Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), que permite que os usuários personalizem nomes de domínio correspondentes e usem a barra lateral do AiShort em qualquer site. No entanto, devido às limitações de injeção de conteúdo de script nas páginas do ChatGPT, a função da barra lateral do script é ativada por meio de um pop-up nas páginas do ChatGPT. 11 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # Problemas de uso de extensão 2 | 3 | ## Limitações da página incorporada do ChatGPT 4 | 5 | O ChatGPT impõe várias restrições de acesso em suas páginas de extensão incorporadas, notavelmente a falta de suporte para autorização de conta do Google para login. Isso significa que os usuários devem fazer login usando seu nome de usuário e senha. 6 | 7 | Se sua conta foi criada inicialmente por meio de autorização do Google, você pode usar o recurso "Esqueceu a senha" para definir uma nova senha. Isso garantirá que você possa fazer login com sucesso na página incorporada do ChatGPT. 8 | 9 | ## Aviso de bloqueio de conteúdo 10 | 11 | Após fazer login com um nome de usuário e senha, você pode ocasionalmente encontrar uma notificação informando "Este conteúdo está bloqueado". Em tais casos, simplesmente recarregar a página geralmente é suficiente para resolver o problema e reverter a página de volta ao seu estado normal após o login. 12 | 13 | É importante observar que alternar idiomas na página integrada do ChatGPT também pode acionar o aviso "Este conteúdo está bloqueado". Portanto, recomendo alterar os idiomas por meio das configurações da extensão em vez de diretamente na página integrada. Essa abordagem pode ajudar a evitar mensagens de erro desnecessárias. 14 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Configurações do Firefox 2 | 3 | Antes de usar o plug-in do Firefox, é recomendável configurá-lo nas duas etapas a seguir. 4 | 5 | ## 1. Configurações de fixação e acesso de extensão 6 | 7 | Primeiro, selecione "Fixar extensão de atalho ChatGPT" na barra de ferramentas do Firefox e, em seguida, entre no centro de extensões. No item de extensão de atalho ChatGPT, selecione "Opções" para entrar na interface de configurações da extensão. As etapas específicas são mostradas na imagem a seguir: 8 | 9 | ![Configurações do Firefox](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. Autorizar operação de extensão 12 | 13 | Em segundo lugar, para garantir que a extensão funcione normalmente em sites como ChatGPT e Bard, você precisa clicar com o botão direito do mouse no ícone da extensão nesses sites e selecionar "Sempre permitir neste site". Esta ação concede à extensão permissão para modificar o conteúdo e adicionar barras laterais em sites designados. 14 | 15 | ![Permissão de extensão do Firefox](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | Após a instalação bem-sucedida, você pode visualizar o [tutorial de uso do plugin](./usage.md). 18 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Guia de instalação local do plugin ZIP do Chrome 2 | 3 | ## Baixar plugin 4 | 5 | Baixe o pacote de instalação do plugin ChatGPT Shortcut Zip (ChatGPT_Shortcut-zip-3.x.x.zip) do [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) e descompacte-o. (A pasta descompactada precisa ser mantida no computador, então lembre-se de descompactá-la em um local permanente) 6 | 7 | ## Habilitar modo de desenvolvedor 8 | 9 | Abra a página "Gerenciar extensões" do Chrome e habilite o "Modo de desenvolvedor". 10 | 11 | Copie o seguinte endereço e cole-o na barra de endereços do navegador e pressione Enter para abri-lo. Habilite o "Modo de desenvolvedor" no canto superior direito da página. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## Instale o plugin 20 | 21 | Arraste a pasta descompactada para a página da extensão para concluir a instalação. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | Após a instalação bem-sucedida, você pode visualizar o [Tutorial de uso do plugin](./usage.md). 26 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # Secção de Sugestões Comunitárias 2 | 3 | A secção de sugestões comunitárias exibirá e disponibilizará sugestões personalizadas compartilhadas e carregadas pelos usuários. É possível compartilhar sugestões em uma página pública e também visualizar sugestões compartilhadas por outros para obter inspiração. 4 | 5 | ## Classificação e Votação 6 | 7 | A página de sugestões comunitárias oferece opções de classificação por tempo de publicação, votos favoráveis/desfavoráveis e busca por palavras-chave. É livre para filtrar as sugestões comunitárias de acordo com suas preferências. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | Os votos favoráveis/desfavoráveis determinarão as sugestões incluídas na página principal. Atualmente, apenas os usuários conectados podem votar e apenas o voto mais recente para a mesma sugestão será registrado. 12 | 13 | ## Sugestões Privadas 14 | 15 | Se você deseja manter suas sugestões privadas, pode optar por compartilhá-las ou não com a comunidade ao enviar ou atualizar suas sugestões. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # Começando a Usar 2 | 3 | Usando o AiShort, você só precisa copiar o prompt selecionado para qualquer modelo de diálogo de IA para obter a saída na direção especificada. Aqui estão as etapas específicas: 4 | 5 | 1. Pesquise ou selecione o prompt desejado e clique no botão copiar no prompt. 6 | 7 | 2. Copie o prompt para o ChatGPT, Gemini ou qualquer modelo de diálogo de IA. 8 | 9 | 3. Insira seus requisitos de acordo com o prompt do diálogo. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # Favoritos e sugestões de envio 2 | 3 | Depois de iniciar sessão, pode adicionar ou remover prompts favoritos ou adicionar prompts pessoais. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## Momento favorito 10 | 11 | ### Adicionar favoritos 12 | 13 | Depois de iniciar a sessão, as etiquetas de coleção predefinidas serão removidas e o botão "Favoritos" será apresentado junto ao prompt. Depois disso, quando marcar ou remover um favorito, será apresentada uma indicação do estado do favorito em tempo real. 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### Remover favoritos 18 | 19 | Clique no ícone de coração localizado no lado direito de uma sugestão favorita para removê-la dos seus favoritos. 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## Adicionar Sugestões Personalizadas 24 | 25 | Após enviar uma sugestão, ela será exibida sob a etiqueta "Suas Sugestões". 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/pt/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- 1 | { 2 | "version.label": { 3 | "message": "Next", 4 | "description": "The label for version current" 5 | }, 6 | "sidebar.docs.category.Policies": { 7 | "message": "Policies", 8 | "description": "The label for category Policies in sidebar docs" 9 | }, 10 | "sidebar.docs.category.使用指南": { 11 | "message": "Guides", 12 | "description": "The label for category 使用指南 in sidebar docs" 13 | }, 14 | "sidebar.docs.category.浏览器插件": { 15 | "message": "Browser Extension", 16 | "description": "The label for category 浏览器插件 in sidebar docs" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/extension/README.md: -------------------------------------------------------------------------------- 1 | # Установить расширение 2 | 3 | AiShort (ChatGPT Shortcut) — это расширение браузера, совместимое с Chrome, Edge, Firefox и другими браузерами на базе Chromium. Это расширение не только предлагает функциональные возможности веб-версии ChatGPT Shortcut, но также содержит уникальные элементы, такие как боковая панель и автоматическая активация окон. Оно может автоматически запускаться с ChatGPT или пользовательскими страницами, а также может быть активировано вручную с помощью сочетания клавиш `Alt+Shift+S`. Ниже приведены каналы загрузки: 4 | 5 | - **Chrome**: [Интернет-магазин Chrome](https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj) 6 | - **Edge**: [Дополнения Microsoft Edge](https://microsoftedge.microsoft.com/addons/detail/chatgpt-shortcut/hnggpalhfjmdhhmgfjpmhlfilnbmjoin) 7 | - **Firefox**: [ДОПОЛНЕНИЯ для браузера Firefox](https://addons.mozilla.org/addon/chatgpt-shortcut/) 8 | - **GitHub**: [Выпуск GitHub](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) 9 | 10 | Кроме того, мы предлагаем Скрипт Tampermonkey — [**ChatGPT Shortcut Anywhere**](https://greasyfork.org/scripts/482907-chatgpt-shortcut-anywhere), который позволяет пользователям настраивать соответствующие доменные имена и использовать боковую панель AiShort на любом веб-сайте. Однако из-за ограничений на внедрение содержимого скрипта на страницах ChatGPT функция боковой панели скрипта активируется через всплывающее окно на страницах ChatGPT. 11 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/extension/faq.md: -------------------------------------------------------------------------------- 1 | # Проблемы использования расширений 2 | 3 | ## Ограничения встроенной страницы ChatGPT 4 | 5 | ChatGPT накладывает несколько ограничений на доступ к своим встроенным страницам расширений, в частности, отсутствие поддержки авторизации учетной записи Google для входа. Это означает, что пользователи должны входить в систему, используя свое имя пользователя и пароль. 6 | 7 | Если ваша учетная запись изначально была создана с помощью авторизации Google, вы можете использовать функцию «Забыли пароль», чтобы установить новый пароль. Это гарантирует, что вы сможете успешно войти на встроенную страницу ChatGPT. 8 | 9 | ## Уведомление о блокировке контента 10 | 11 | После входа в систему с именем пользователя и паролем вы можете иногда сталкиваться с уведомлением «Этот контент заблокирован». В таких случаях простой перезагрузки страницы часто бывает достаточно, чтобы решить проблему и вернуть страницу в нормальное состояние после входа. 12 | 13 | Важно отметить, что переключение языков на встроенной странице ChatGPT также может вызвать уведомление «Этот контент заблокирован». Поэтому я рекомендую менять языки через настройки расширения, а не непосредственно на встроенной странице. Такой подход поможет избежать ненужных сообщений об ошибках. 14 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/extension/firefox-extension-setting.md: -------------------------------------------------------------------------------- 1 | # Настройки Firefox 2 | 3 | Перед использованием плагина Firefox рекомендуется настроить его, выполнив следующие два шага. 4 | 5 | ## 1. Закрепление расширения и настройки доступа 6 | 7 | Сначала выберите «Закрепить расширение ChatGPT Shortcut» на панели инструментов Firefox, затем войдите в центр расширений. В элементе расширения ChatGPT Shortcut выберите «Параметры», чтобы войти в интерфейс настроек расширения. Конкретные шаги показаны на следующем изображении: 8 | 9 | ![Настройки Firefox](https://img.newzone.top/2023-12-25-05-51-47.png?imageMogr2/format/webp) 10 | 11 | ## 2. Разрешить работу расширения 12 | 13 | Во-вторых, чтобы расширение нормально функционировало на таких сайтах, как ChatGPT и Bard, вам нужно щелкнуть правой кнопкой мыши значок расширения на этих сайтах и ​​выбрать «Всегда разрешать на этом сайте». Это действие предоставляет расширению разрешение на изменение содержимого и добавление боковых панелей на указанных сайтах. 14 | 15 | ![Разрешение расширения Firefox](https://img.newzone.top/2023-12-25-05-59-48.png?imageMogr2/format/webp) 16 | 17 | После успешной установки вы можете просмотреть [руководство по использованию плагина](./usage.md). 18 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension-zip.md: -------------------------------------------------------------------------------- 1 | # Руководство по локальной установке плагина Chrome ZIP 2 | 3 | ## Загрузить плагин 4 | 5 | Загрузите установочный пакет плагина ChatGPT Shortcut ZIP (ChatGPT_Shortcut-zip-3.x.x.zip) с [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) и распакуйте его. (Распакованная папка должна оставаться на компьютере, поэтому не забудьте распаковать ее в постоянное место) 6 | 7 | ## Включить режим разработчика 8 | 9 | Откройте страницу «Управление расширениями» Chrome и включите «Режим разработчика». 10 | 11 | Скопируйте следующий адрес и вставьте его в адресную строку браузера, затем нажмите Enter, чтобы открыть его. Включите «Режим разработчика» в правом верхнем углу страницы. 12 | 13 | ```txt 14 | chrome://extensions 15 | ``` 16 | 17 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 18 | 19 | ## Установите плагин 20 | 21 | Перетащите распакованную папку на страницу расширения, чтобы завершить установку. 22 | 23 | ![](https://img.newzone.top/2024-08-12-22-27-47.png?imageMogr2/format/webp) 24 | 25 | После успешной установки вы можете просмотреть [Учебник по использованию плагина](./usage.md). 26 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/extension/manual-chrome-extension.md: -------------------------------------------------------------------------------- 1 | # Руководство по локальной установке плагина Chrome CRX 2 | 3 | ## Загрузите пакет CRX 4 | 5 | Загрузите установочный пакет ChatGPT Shortcut crx (ChatGPT_Shortcut-crx-3.x.x.zip) с [GitHub Release](https://github.com/rockbenben/ChatGPT-Shortcut/releases/latest) и распакуйте его (файл crx находится в распакованной папке). 6 | 7 | ![](https://img.newzone.top/2024-08-12-21-47-10.png?imageMogr2/format/webp) 8 | 9 | ## Включите режим разработчика 10 | 11 | Откройте страницу «Управление расширениями» Chrome и включите «Режим разработчика». 12 | 13 | Скопируйте следующий адрес и вставьте его в адресную строку браузера, затем нажмите Enter, чтобы открыть его. Включите «Режим разработчика» в правом верхнем углу страницы. 14 | 15 | ```txt 16 | chrome://extensions 17 | ``` 18 | 19 | ![](https://img.newzone.top/2024-08-12-22-05-52.png?imageMogr2/format/webp) 20 | 21 | ## Установите плагин 22 | 23 | Установите плагин (Примечание⚠️: Вам нужно перетащить файл .crx, не нажимайте [Загрузить распакованное расширение]) 24 | 25 | ![](https://img.newzone.top/2024-08-12-22-16-38.png?imageMogr2/format/webp) 26 | 27 | После успешной установки вы можете просмотреть [Учебник по использованию плагина](./usage.md). 28 | 29 | ## Возникли проблемы с установкой? 30 | 31 | 1. Пользователи Windows, пожалуйста, проверьте, был ли загруженный установочный пакет распакован (не был ли он дважды открыт)? 32 | 33 | 2. Включен ли «Режим разработчика»? Если нет, перейдите ко второму шагу. 34 | 35 | 3. Вы перетащили файл crx на страницу «Расширения»? Примечание⚠️: не нажимайте [Загрузить распакованное расширение], необходимо перетащить файл crx. 36 | 37 | 4. Браузер не позволяет установить файл crx? Попробуйте установить файл zip! [Нажмите здесь, чтобы просмотреть инструкции по установке zip](./manual-chrome-extension-zip.md). 38 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/guides/community.md: -------------------------------------------------------------------------------- 1 | # Общественные сигналы 2 | 3 | Общественные сигналы будут представлены пользовательские подсказки, которые можно будет делиться и загружать. Вы сможете размещать свои подсказки на общедоступной странице и также просматривать подсказки, опубликованные другими пользователями, для вдохновения. 4 | 5 | ## Сортировка и голосование 6 | 7 | На странице "Подсказки сообщества" доступны опции сортировки по времени публикации, голосам "за" и "против" и поиск по ключевым словам. Вы можете свободно фильтровать подсказки сообщества в соответствии с вашими предпочтениями. 8 | 9 | ![](https://img.newzone.top/2023-07-13-14-50-15.png?imageMogr2/format/webp/thumbnail/500x) 10 | 11 | Голосование "за" и "против" определит, какие подсказки будут включены на главной странице. В настоящее время только зарегистрированные пользователи могут голосовать, и только последний голос за одну и ту же подсказку будет записан. 12 | 13 | ## Личные подсказки 14 | 15 | Если вы желаете хранить свои подсказки в привате, вы можете выбрать, делиться ими с сообществом или нет при отправке или обновлении подсказок. 16 | 17 | ![](https://img.newzone.top/2023-07-13-09-13-00.gif?imageMogr2/format/webp/thumbnail/500x) 18 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/guides/getting-started.md: -------------------------------------------------------------------------------- 1 | # Начало работы 2 | 3 | Используя AiShort, вам нужно только скопировать выбранную подсказку в любую модель диалога ИИ, чтобы получить вывод в указанном направлении. Вот конкретные шаги: 4 | 5 | 1. Найдите или выберите нужную подсказку, а затем нажмите кнопку копирования на подсказке. 6 | 7 | 2. Скопируйте подсказку в ChatGPT, Gemini или любую модель диалога ИИ. 8 | 9 | 3. Введите свои требования в соответствии с подсказкой диалога. 10 | 11 | ![](https://img.newzone.top/gif/how-to-use-aishort.gif?imageMogr2/format/webp) 12 | 13 | ## Common AI models 14 | 15 | - ChatGPT:https://chatgpt.com 16 | - Gemini: https://gemini.google.com/app 17 | - Claude: https://claude.ai/chats 18 | - 阿里通义千问:https://tongyi.aliyun.com/qianwen/ 19 | - Kimi:https://kimi.moonshot.cn/ 20 | - 豆包:https://www.doubao.com/chat/ 21 | - 文心一言:https://yiyan.baidu.com 22 | - 智谱清言:https://chatglm.cn/detail 23 | - 腾讯元宝:https://yuanbao.tencent.com/chat 24 | - 讯飞星火:https://xinghuo.xfyun.cn/ 25 | - 百川智能:https://ying.baichuan-ai.com/chat 26 | 27 | ## Third-party API integration 28 | 29 | - OpenRouter: https://openrouter.ai/chat 30 | - siliconflow: https://cloud.siliconflow.cn/playground/chat 31 | - grog: https://groq.com/ 32 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/guides/login-user.md: -------------------------------------------------------------------------------- 1 | # Фавориты и рекомендации по подаче материала 2 | 3 | После входа в систему вы можете добавлять или удалять избранные подсказки, а также добавлять личные подсказки. 4 | 5 | ![](https://img.newzone.top/2023-06-05-13-51-23.png?imageMogr2/format/webp/thumbnail/500x) 6 | 7 | ![](https://img.newzone.top/2023-06-05-13-53-20.png?imageMogr2/format/webp) 8 | 9 | ## Любимая подсказка 10 | 11 | ### Добавить в избранное 12 | 13 | После входа в систему ярлыки коллекций по умолчанию будут удалены, а рядом с подсказкой появится кнопка "Избранное". После этого при добавлении или удалении избранного в режиме реального времени будет отображаться подсказка о статусе избранного. 14 | 15 | ![](https://img.newzone.top/2023-06-05-13-56-01.png?imageMogr2/format/webp/thumbnail/500x) 16 | 17 | ### Удаление избранного 18 | 19 | Нажмите на иконку сердца, расположенную справа от подсказки в избранном, чтобы удалить ее из избранного. 20 | 21 | ![](https://img.newzone.top/2023-06-05-13-57-27.png?imageMogr2/format/webp/thumbnail/500x) 22 | 23 | ## Добавление пользовательских подсказок 24 | 25 | После отправки подсказки она будет отображаться под меткой "Ваши подсказки". 26 | 27 | ![](https://img.newzone.top/2023-06-05-13-58-16.png?imageMogr2/format/webp/thumbnail/500x) 28 | 29 | ![](https://img.newzone.top/2023-06-05-14-06-09.png?imageMogr2/format/webp) 30 | 31 | ![](https://img.newzone.top/2023-06-05-14-08-52.png?imageMogr2/format/webp/thumbnail/500x) 32 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": { 3 | "message": "Copyright © 2024 AiShort (ChatGPT Shortcut)", 4 | "description": "The footer copyright" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 3000; 3 | server_name localhost; 4 | 5 | location / { 6 | root /usr/share/nginx/html; 7 | index index.html; 8 | try_files $uri $uri/ /index.html; 9 | } 10 | 11 | error_page 404 /404.html; 12 | location = /404.html { 13 | root /usr/share/nginx/html; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /plugins/instantpage.js: -------------------------------------------------------------------------------- 1 | //https://docusaurus.io/zh-CN/docs/api/plugin-methods/lifecycle-apis#injectHtmlTags 2 | module.exports = function () { 3 | return { 4 | name: "instantpage", 5 | injectHtmlTags() { 6 | return { 7 | postBodyTags: [ 8 | { 9 | tagName: "link", 10 | attributes: { 11 | rel: "preload", 12 | href: "https://oss.newzone.top/instantpage.min.js", 13 | as: "script", 14 | crossorigin: "anonymous", 15 | }, 16 | }, 17 | { 18 | tagName: "script", 19 | attributes: { 20 | src: "https://oss.newzone.top/instantpage.min.js", 21 | type: "module", 22 | }, 23 | }, 24 | ], 25 | }; 26 | }, 27 | }; 28 | }; 29 | -------------------------------------------------------------------------------- /plugins/piwik.js: -------------------------------------------------------------------------------- 1 | //https://docusaurus.io/zh-CN/docs/api/plugin-methods/lifecycle-apis#injectHtmlTags 2 | module.exports = function () { 3 | return { 4 | name: "piwik", 5 | injectHtmlTags() { 6 | return { 7 | postBodyTags: [ 8 | { 9 | tagName: "script", 10 | innerHTML: `var _paq = window._paq = window._paq || [];/* tracker methods like "setCustomDimension" should be called before "trackPageView" */_paq.push(['trackPageView']);_paq.push(['enableLinkTracking']);(function() {var u="https://piwik.seoipo.com/";_paq.push(['setTrackerUrl', u+'matomo.php']);_paq.push(['setSiteId', '9']);var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);})();`, 11 | }, 12 | ], 13 | }; 14 | }, 15 | }; 16 | }; 17 | -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Creating a sidebar enables you to: 3 | - create an ordered group of docs 4 | - render a sidebar for each doc of that group 5 | - provide next/previous navigation 6 | 7 | The sidebars can be generated from the filesystem, or explicitly defined here. 8 | 9 | Create as many sidebars as you want. 10 | */ 11 | 12 | // @ts-check 13 | 14 | /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ 15 | const sidebars = { 16 | docs: [ 17 | { 18 | type: "doc", 19 | id: "introduction", 20 | }, 21 | { 22 | type: "doc", 23 | id: "guides/getting-started", 24 | }, 25 | { 26 | type: "category", 27 | label: "使用指南", 28 | link: { 29 | type: "generated-index", 30 | }, 31 | collapsed: false, 32 | items: ["guides/interface", "guides/login-user", "guides/community", "guides/faq"], 33 | }, 34 | { 35 | type: "category", 36 | label: "浏览器插件", 37 | link: { 38 | type: "generated-index", 39 | }, 40 | collapsed: false, 41 | items: ["extension/README", "extension/usage", "extension/manual-chrome-extension", "extension/manual-chrome-extension-zip", "extension/firefox-extension-setting", "extension/faq"], 42 | }, 43 | { 44 | type: "doc", 45 | id: "deploy", 46 | }, 47 | { 48 | type: "category", 49 | label: "Policies", 50 | items: ["privacy-policy", "terms-of-service"], 51 | }, 52 | ], 53 | }; 54 | 55 | export default sidebars; 56 | -------------------------------------------------------------------------------- /src/components/LocalizedNavbar/Navbar.en.js: -------------------------------------------------------------------------------- 1 | const enNavbar = { 2 | hideOnScroll: true, 3 | title: "AI Short", 4 | logo: { 5 | alt: "ChatGPT Shortcuts", 6 | src: "img/logo.svg", 7 | }, 8 | items: [ 9 | { 10 | href: 'https://www.producthunt.com/posts/chatgpt-shortcut?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-chatgpt-shortcut', 11 | label: 'Find on Product Hunt', 12 | target: '_blank', 13 | position: 'left', 14 | }, 15 | { 16 | to: "https://www.aishort.top/en/feedback", 17 | label: "Feedback", 18 | position: "left", 19 | }, 20 | { type: "localeDropdown", position: "right" }, 21 | { 22 | href: "https://github.com/rockbenben/ChatGPT-Shortcut", 23 | position: "right", 24 | className: "header-github-link", 25 | }, 26 | { 27 | href: "https://discord.gg/PZTQfJ4GjX", 28 | position: "right", 29 | className: "header-discord-link", 30 | }, 31 | ], 32 | }; 33 | 34 | module.exports = enNavbar; 35 | -------------------------------------------------------------------------------- /src/components/LocalizedNavbar/Navbar.zh.js: -------------------------------------------------------------------------------- 1 | const zhNavbar = { 2 | hideOnScroll: true, 3 | title: "AI Short", 4 | logo: { 5 | alt: "ChatGPT Shortcuts", 6 | src: "img/logo.svg", 7 | }, 8 | items: [ 9 | { 10 | to: "https://newzone.top/posts/2023-02-27-chatgpt_shortcuts.html", 11 | label: "ChatGPT Shortcut 原理说明", 12 | position: "left", 13 | }, 14 | { 15 | type: 'dropdown', 16 | label: '其他工具', 17 | position: 'left', 18 | items: [ 19 | { 20 | label: "Chrome 扩展版", 21 | href: "https://chrome.google.com/webstore/detail/chatgpt-shortcut/blcgeoojgdpodnmnhfpohphdhfncblnj", 22 | }, 23 | { 24 | label: 'IMGPrompt', 25 | href: 'https://prompt.newzone.top/', 26 | }, 27 | { 28 | label: '文字处理', 29 | href: 'https://tools.newzone.top/', 30 | }, 31 | { 32 | label: '工具收藏', 33 | href: 'https://nav.newzone.top', 34 | }, 35 | { 36 | label: 'Find on Product Hunt', 37 | href: 'https://www.producthunt.com/posts/chatgpt-shortcut?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-chatgpt-shortcut', 38 | }, 39 | ], 40 | }, 41 | { 42 | to: "https://www.aishort.top/feedback", 43 | label: "反馈", 44 | position: "left", 45 | }, 46 | { type: "localeDropdown", position: "right" }, 47 | { 48 | href: "https://github.com/rockbenben/ChatGPT-Shortcut", 49 | position: "right", 50 | className: "header-github-link", 51 | }, 52 | { 53 | href: "https://discord.gg/PZTQfJ4GjX", 54 | position: "right", 55 | className: "header-discord-link", 56 | }, 57 | ], 58 | }; 59 | 60 | module.exports = zhNavbar; 61 | -------------------------------------------------------------------------------- /src/components/Svg/index.tsx: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | import React, {type ReactNode, type ComponentProps} from 'react'; 9 | import clsx from 'clsx'; 10 | import styles from './styles.module.css'; 11 | 12 | export type SvgIconProps = ComponentProps<'svg'> & { 13 | viewBox?: string; 14 | size?: 'inherit' | 'small' | 'medium' | 'large'; 15 | color?: 'inherit' | 'primary' | 'secondary' | 'success' | 'error' | 'warning'; 16 | svgClass?: string; // Class attribute on the child 17 | colorAttr?: string; // Applies a color attribute to the SVG element. 18 | children: ReactNode; // Node passed into the SVG element. 19 | }; 20 | 21 | export default function Svg(props: SvgIconProps): JSX.Element { 22 | const { 23 | svgClass, 24 | colorAttr, 25 | children, 26 | color = 'inherit', 27 | size = 'medium', 28 | viewBox = '0 0 24 24', 29 | ...rest 30 | } = props; 31 | 32 | return ( 33 | 39 | {children} 40 | 41 | ); 42 | } 43 | -------------------------------------------------------------------------------- /src/components/Svg/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .svgIcon { 9 | user-select: none; 10 | width: 1em; 11 | height: 1em; 12 | display: inline-block; 13 | fill: currentColor; 14 | flex-shrink: 0; 15 | color: inherit; 16 | } 17 | 18 | /* font-size */ 19 | .small { 20 | font-size: 1.25rem; 21 | } 22 | 23 | .medium { 24 | font-size: 1.5rem; 25 | } 26 | 27 | .large { 28 | font-size: 2.185rem; 29 | } 30 | 31 | /* colors */ 32 | .primary { 33 | color: var(--ifm-color-primary); 34 | } 35 | 36 | .secondary { 37 | color: var(--ifm-color-secondary); 38 | } 39 | 40 | .success { 41 | color: var(--ifm-color-success); 42 | } 43 | 44 | .error { 45 | color: var(--ifm-color-error); 46 | } 47 | 48 | .warning { 49 | color: var(--ifm-color-warning); 50 | } 51 | 52 | .inherit { 53 | color: inherit; 54 | } 55 | -------------------------------------------------------------------------------- /src/components/svgIcons/FavoriteIcon/index.tsx: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | import React from 'react'; 9 | import Svg, {type SvgIconProps} from '@site/src/components/Svg'; 10 | 11 | export default function FavoriteIcon( 12 | props: Omit, 13 | ): JSX.Element { 14 | return ( 15 | 16 | 17 | 18 | ); 19 | } 20 | -------------------------------------------------------------------------------- /src/data/User.d.tsx: -------------------------------------------------------------------------------- 1 | export type LanguageData = { 2 | title: string; 3 | prompt: string; 4 | description?: string; 5 | remark: string; 6 | }; 7 | 8 | export type User = { 9 | zh?: LanguageData; 10 | en?: LanguageData; 11 | ja?: LanguageData; 12 | ko?: LanguageData; 13 | website: string | null; 14 | tags: TagType[]; 15 | id: number; 16 | weight: number; 17 | }; 18 | 19 | export type TagType = 20 | | "favorite" 21 | | "write" 22 | | "article" 23 | | "code" 24 | | "ai" 25 | | "living" 26 | | "interesting" 27 | | "life" 28 | | "social" 29 | | "philosophy" 30 | | "mind" 31 | | "pedagogy" 32 | | "academic" 33 | | "games" 34 | | "tool" 35 | | "interpreter" 36 | | "language" 37 | | "speech" 38 | | "comments" 39 | | "text" 40 | | "company" 41 | | "seo" 42 | | "doctor" 43 | | "finance" 44 | | "music" 45 | | "professional" 46 | | "contribute"; 47 | 48 | export type Tag = { 49 | label: string; 50 | description: string; 51 | color: string; 52 | }; 53 | -------------------------------------------------------------------------------- /src/data/users.ar.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_ar.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.bn.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_bn.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.de.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_de.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.en.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_en.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.es.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_es.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.fr.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_fr.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.hi.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_hi.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.it.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_it.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.ja.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_ja.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.ko.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_ko.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.pt.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_pt.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.ru.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_ru.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/data/users.zh.tsx: -------------------------------------------------------------------------------- 1 | import { sortBy } from "@site/src/utils/jsUtils"; 2 | import { User } from "./User.d"; 3 | import UsersData from "./prompt_zh.json"; 4 | 5 | const Users: User[] = UsersData as User[]; 6 | function sortUsers() { 7 | let result = Users; 8 | // Sort by prompt weight 9 | result = sortBy(result, (user) => -user.weight); 10 | // Sort by prompt title 11 | //result = sortBy(result, (user) => user.zh.title.toLowerCase()); 12 | // Sort by favorite tag, favorites first 13 | result = sortBy(result, (user) => !user.tags.includes("favorite")); 14 | return result; 15 | } 16 | 17 | export const sortedUsers = sortUsers(); 18 | -------------------------------------------------------------------------------- /src/hooks/useCopyToClipboard.ts: -------------------------------------------------------------------------------- 1 | import { useState, useCallback } from "react"; 2 | import copy from "copy-to-clipboard"; 3 | import { updateCopyCount } from "@site/src/api"; 4 | 5 | export const useCopyToClipboard = (timeout: number = 2000) => { 6 | const [copied, setCopied] = useState(false); 7 | 8 | const copyText = useCallback( 9 | (text: string) => { 10 | copy(text); 11 | setCopied(true); 12 | setTimeout(() => { 13 | setCopied(false); 14 | }, timeout); 15 | }, 16 | [timeout] 17 | ); 18 | 19 | const updateCopy = useCallback( 20 | async (text: string, id) => { 21 | try { 22 | copyText(text); 23 | await updateCopyCount(id); 24 | } catch (error) { 25 | console.error("Error updating copy count:", error); 26 | } 27 | }, 28 | [copyText] 29 | ); 30 | 31 | return { copied, copyText, updateCopy }; 32 | }; 33 | -------------------------------------------------------------------------------- /src/pages/_components/AuthContext.tsx: -------------------------------------------------------------------------------- 1 | import React, { createContext, useState, useEffect, useMemo, useCallback } from "react"; 2 | import { getUserAllInfo } from "@site/src/api"; 3 | 4 | export const AuthContext = createContext({ 5 | userAuth: null, 6 | refreshUserAuth: () => {}, 7 | setUserAuth: (userAuth: any) => {}, 8 | }); 9 | 10 | export function AuthProvider({ children }) { 11 | const [userAuth, setUserAuth] = useState(null); 12 | const [isLoading, setIsLoading] = useState(true); 13 | 14 | const fetchUser = useCallback(async () => { 15 | setIsLoading(true); 16 | try { 17 | const userAuth = await getUserAllInfo(); 18 | setUserAuth(userAuth); 19 | } catch (error) { 20 | console.error("Failed to fetch user data:", error); 21 | // 这里可以考虑做额外处理,例如置空、显示错误提示或者重定向到登录页面 22 | // setUserAuth(null); 23 | } finally { 24 | setIsLoading(false); 25 | } 26 | }, []); 27 | 28 | useEffect(() => { 29 | fetchUser(); 30 | }, []); 31 | 32 | const value = useMemo( 33 | () => ({ 34 | userAuth, 35 | setUserAuth, 36 | refreshUserAuth: fetchUser, 37 | }), 38 | [userAuth, fetchUser] 39 | ); 40 | 41 | return {children}; 42 | } 43 | -------------------------------------------------------------------------------- /src/pages/_components/CommentComponent/GiphySelector.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Grid, SearchBar, SearchContext, SearchContextManager } from "@giphy/react-components"; 3 | import { GiphyFetch } from "@giphy/js-fetch-api"; 4 | 5 | const GIPHY_API_KEY = "36zezehgQXZMRV6Mko784D9OEBm0UHiP"; 6 | const gf = new GiphyFetch(GIPHY_API_KEY); 7 | 8 | export const GiphySelector = ({ 9 | onGifSelect, 10 | isDarkMode, 11 | width = 450, 12 | height = 300, 13 | columns = 3, 14 | gutter = 6, 15 | limit = 10, 16 | }) => { 17 | const fetchGifs = (offset) => gf.trending({ offset, limit }); 18 | 19 | return ( 20 | 27 |
28 | 29 |
36 | 37 | {({ fetchGifs, searchKey }) => ( 38 | { 41 | e.preventDefault(); 42 | onGifSelect(gif); 43 | }} 44 | fetchGifs={fetchGifs} 45 | width={width} 46 | columns={columns} 47 | gutter={gutter} 48 | /> 49 | )} 50 | 51 |
52 |
53 |
54 | ); 55 | }; 56 | -------------------------------------------------------------------------------- /src/pages/_components/ShareButtons.tsx: -------------------------------------------------------------------------------- 1 | import React, { useMemo } from "react"; 2 | import { ConfigProvider, FloatButton } from "antd"; 3 | import { ShareAltOutlined } from "@ant-design/icons"; 4 | import { FacebookShareButton, TelegramShareButton, TumblrShareButton, TwitterShareButton, WeiboShareButton, FacebookIcon, TelegramIcon, TumblrIcon, TwitterIcon, WeiboIcon } from "react-share"; 5 | 6 | function ShareButtons({ shareUrl, title, popOver }) { 7 | const buttons = useMemo( 8 | () => ( 9 | <> 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | ), 27 | [shareUrl, title] 28 | ); 29 | 30 | const floatButtons = ( 31 | 37 | }> 38 | {buttons} 39 | 40 | 41 | ); 42 | 43 | if (popOver) { 44 | return
{buttons}
; 45 | } 46 | 47 | return floatButtons; 48 | } 49 | 50 | export default ShareButtons; 51 | -------------------------------------------------------------------------------- /src/pages/_components/ShowcaseFilterToggle/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .checkboxLabel { 9 | --height: 25px; 10 | --width: 80px; 11 | --border: 2px; 12 | display: flex; 13 | width: var(--width); 14 | height: var(--height); 15 | position: relative; 16 | border-radius: var(--height); 17 | border: var(--border) solid var(--ifm-color-primary-darkest); 18 | cursor: pointer; 19 | justify-content: space-around; 20 | opacity: 0.75; 21 | transition: opacity var(--ifm-transition-fast) 22 | var(--ifm-transition-timing-default); 23 | box-shadow: var(--ifm-global-shadow-md); 24 | } 25 | 26 | .checkboxLabel:hover { 27 | opacity: 1; 28 | box-shadow: var(--ifm-global-shadow-md), 29 | 0 0 2px 1px var(--ifm-color-primary-dark); 30 | } 31 | 32 | .checkboxLabel::after { 33 | position: absolute; 34 | content: ''; 35 | inset: 0; 36 | width: calc(var(--width) / 2); 37 | height: 100%; 38 | border-radius: var(--height); 39 | background-color: var(--ifm-color-primary-darkest); 40 | transition: transform var(--ifm-transition-fast) 41 | var(--ifm-transition-timing-default); 42 | transform: translateX(calc(var(--width) / 2 - var(--border))); 43 | } 44 | 45 | input:focus-visible ~ .checkboxLabel::after { 46 | outline: 2px solid currentColor; 47 | } 48 | 49 | .checkboxLabel > * { 50 | font-size: 0.8rem; 51 | color: inherit; 52 | transition: opacity 150ms ease-in 50ms; 53 | } 54 | 55 | input:checked ~ .checkboxLabel::after { 56 | transform: translateX(calc(-1 * var(--border))); 57 | } 58 | -------------------------------------------------------------------------------- /src/pages/_components/ShowcaseTagSelect/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .checkboxLabel:hover { 9 | opacity: 1; 10 | box-shadow: 0 0 2px 1px var(--ifm-color-secondary-darkest); 11 | } 12 | 13 | input[type='checkbox'] + .checkboxLabel { 14 | display: flex; 15 | align-items: center; 16 | cursor: pointer; 17 | line-height: 1.5; 18 | border-radius: 4px; 19 | padding: 0.275rem 0.8rem; 20 | opacity: 0.85; 21 | transition: opacity 200ms ease-out; 22 | border: 2px solid var(--ifm-color-secondary-darkest); 23 | } 24 | 25 | input:focus-visible + .checkboxLabel { 26 | outline: 2px solid currentColor; 27 | } 28 | 29 | input:checked + .checkboxLabel { 30 | opacity: 0.9; 31 | background-color: var(--site-color-checkbox-checked-bg); 32 | border: 2px solid var(--ifm-color-primary-darkest); 33 | } 34 | 35 | input:checked + .checkboxLabel:hover { 36 | opacity: 0.75; 37 | box-shadow: 0 0 2px 1px var(--ifm-color-primary-dark); 38 | } 39 | -------------------------------------------------------------------------------- /src/pages/_components/ShowcaseTooltip/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .tooltip { 9 | border-radius: 4px; 10 | padding: 4px 8px; 11 | color: var(--site-color-tooltip); 12 | background: var(--site-color-tooltip-background); 13 | font-size: 0.8rem; 14 | z-index: 500; 15 | line-height: 1.4; 16 | font-weight: 500; 17 | max-width: 300px; 18 | opacity: 0.92; 19 | } 20 | 21 | .tooltipArrow { 22 | visibility: hidden; 23 | } 24 | 25 | .tooltipArrow, 26 | .tooltipArrow::before { 27 | position: absolute; 28 | width: 8px; 29 | height: 8px; 30 | background: inherit; 31 | } 32 | 33 | .tooltipArrow::before { 34 | visibility: visible; 35 | content: ''; 36 | transform: rotate(45deg); 37 | } 38 | 39 | .tooltip[data-popper-placement^='top'] > .tooltipArrow { 40 | bottom: -4px; 41 | } 42 | 43 | .tooltip[data-popper-placement^='bottom'] > .tooltipArrow { 44 | top: -4px; 45 | } 46 | -------------------------------------------------------------------------------- /src/pages/_components/themeConfig.tsx: -------------------------------------------------------------------------------- 1 | const themeConfig = { 2 | token: { 3 | colorPrimary: "#397e6a", 4 | }, 5 | cssVar: true, 6 | hashed: false, 7 | }; 8 | 9 | export default themeConfig; 10 | -------------------------------------------------------------------------------- /src/pages/user/auth.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect } from "react"; 2 | import { useLocation } from "@docusaurus/router"; 3 | import { loginWithToken } from "@site/src/api"; 4 | 5 | const CallbackPage = () => { 6 | const location = useLocation(); 7 | const urlParams = new URLSearchParams(location.search); 8 | 9 | useEffect(() => { 10 | try { 11 | const code = urlParams.get("code"); 12 | 13 | if (code) { 14 | if (window.opener) { 15 | window.opener.postMessage({ code }, "*"); 16 | window.close(); 17 | } else { 18 | // Handle the situation where window.opener is null 19 | console.error("Please do not close the main login page during the login process"); 20 | } 21 | } else { 22 | // 从 URL 查询参数中获取 token 23 | const token = urlParams.get("loginToken"); 24 | 25 | if (token) { 26 | loginUserWithToken(token); 27 | } 28 | } 29 | } catch (e) { 30 | console.error("An error occurred:", e); 31 | } 32 | }, [location, urlParams]); 33 | 34 | const loginUserWithToken = async (token) => { 35 | try { 36 | const response = await loginWithToken(token); 37 | console.log("Login successful:", response); 38 | } catch (error) { 39 | console.error("Login failed, token is invalid or expired:", error); 40 | } finally { 41 | window.location.replace("/"); 42 | } 43 | }; 44 | 45 | return null; // or a loading spinner, or whatever you want to show while waiting 46 | }; 47 | 48 | export default CallbackPage; 49 | -------------------------------------------------------------------------------- /src/utils/__tests__/jsUtils.test.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | import {toggleListItem} from '../jsUtils'; 9 | 10 | describe('toggleListItem', () => { 11 | it('removes item already in list', () => { 12 | expect(toggleListItem([1, 2, 3], 2)).toEqual([1, 3]); 13 | }); 14 | it('appends item not in list', () => { 15 | expect(toggleListItem([1, 2], 3)).toEqual([1, 2, 3]); 16 | }); 17 | }); 18 | -------------------------------------------------------------------------------- /src/utils/cacheJsonData.ts: -------------------------------------------------------------------------------- 1 | export function cacheJsonData(jsonData, lang) { 2 | // 定义缓存的键和过期时间的计算方式 3 | const getCacheKey = (id) => `cards_${id}${lang ? `_${lang}` : ""}`; 4 | const getExpirationKey = (cacheKey) => `${cacheKey}_expiration`; 5 | const expirationTime = 100 * 24 * 60 * 60 * 1000; 6 | 7 | // 遍历传入的 JSON 数据,并缓存到 localStorage 8 | jsonData.forEach((item) => { 9 | const cacheKey = getCacheKey(item.id); 10 | const expirationKey = getExpirationKey(cacheKey); 11 | 12 | // 如果缓存中没有数据,或者缓存已经过期,则将新数据保存到 localStorage 13 | const cachedDataStr = localStorage.getItem(cacheKey); 14 | if (!cachedDataStr) { 15 | // 保存数据和过期时间 16 | localStorage.setItem(cacheKey, JSON.stringify(item)); 17 | localStorage.setItem(expirationKey, String(Date.now() + expirationTime)); 18 | } 19 | }); 20 | } 21 | -------------------------------------------------------------------------------- /src/utils/formatters.ts: -------------------------------------------------------------------------------- 1 | export const getWeight = (item: { count?: number; weight?: number }) => { 2 | const value = item.count ?? item.weight ?? 0; 3 | return value; 4 | }; 5 | 6 | const compactFormatter = new Intl.NumberFormat("en-US", { 7 | notation: "compact", 8 | compactDisplay: "short", 9 | }); 10 | 11 | export const formatCount = (count) => { 12 | return compactFormatter.format(count); 13 | }; 14 | 15 | // truncate 16 | export const MAX_LENGTH = 200; 17 | export const truncate = (str: string, num: number = MAX_LENGTH): string => (str.length <= num ? str : `${str.slice(0, num)}...`); 18 | -------------------------------------------------------------------------------- /src/utils/jsUtils.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | // Inspired by https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_sortby-and-_orderby 9 | export function sortBy( 10 | array: T[], 11 | getter: (item: T) => string | number | boolean, 12 | ): T[] { 13 | const sortedArray = [...array]; 14 | sortedArray.sort((a, b) => 15 | // eslint-disable-next-line no-nested-ternary 16 | getter(a) > getter(b) ? 1 : getter(b) > getter(a) ? -1 : 0, 17 | ); 18 | return sortedArray; 19 | } 20 | 21 | export function toggleListItem(list: T[], item: T): T[] { 22 | const itemIndex = list.indexOf(item); 23 | if (itemIndex === -1) { 24 | return list.concat(item); 25 | } 26 | const newList = [...list]; 27 | newList.splice(itemIndex, 1); 28 | return newList; 29 | } 30 | -------------------------------------------------------------------------------- /src/utils/prismDark.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | import darkTheme from 'prism-react-renderer/themes/vsDark/index.cjs.js'; 9 | 10 | export default { 11 | plain: { 12 | color: '#D4D4D4', 13 | backgroundColor: '#212121', 14 | }, 15 | styles: [ 16 | ...darkTheme.styles, 17 | { 18 | types: ['title'], 19 | style: { 20 | color: '#569CD6', 21 | fontWeight: 'bold', 22 | }, 23 | }, 24 | { 25 | types: ['property', 'parameter'], 26 | style: { 27 | color: '#9CDCFE', 28 | }, 29 | }, 30 | { 31 | types: ['script'], 32 | style: { 33 | color: '#D4D4D4', 34 | }, 35 | }, 36 | { 37 | types: ['boolean', 'arrow', 'atrule', 'tag'], 38 | style: { 39 | color: '#569CD6', 40 | }, 41 | }, 42 | { 43 | types: ['number', 'color', 'unit'], 44 | style: { 45 | color: '#B5CEA8', 46 | }, 47 | }, 48 | { 49 | types: ['font-matter'], 50 | style: { 51 | color: '#CE9178', 52 | }, 53 | }, 54 | { 55 | types: ['keyword', 'rule'], 56 | style: { 57 | color: '#C586C0', 58 | }, 59 | }, 60 | { 61 | types: ['regex'], 62 | style: { 63 | color: '#D16969', 64 | }, 65 | }, 66 | { 67 | types: ['maybe-class-name'], 68 | style: { 69 | color: '#4EC9B0', 70 | }, 71 | }, 72 | { 73 | types: ['constant'], 74 | style: { 75 | color: '#4FC1FF', 76 | }, 77 | }, 78 | ], 79 | }; 80 | -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbenben/ChatGPT-Shortcut/bf9de67a1a180216e6ac9a9b7cf8e71ca9217d09/static/.nojekyll -------------------------------------------------------------------------------- /static/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-7585955822109216, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbenben/ChatGPT-Shortcut/bf9de67a1a180216e6ac9a9b7cf8e71ca9217d09/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockbenben/ChatGPT-Shortcut/bf9de67a1a180216e6ac9a9b7cf8e71ca9217d09/static/img/logo.png --------------------------------------------------------------------------------