├── .gitignore ├── AGENTS.md ├── LICENSE ├── README.MD ├── background.js ├── css ├── settings.css └── styles.css ├── images ├── chromestore.png ├── file.png ├── logo_128.png ├── logo_16.png ├── logo_32.png ├── logo_48.png ├── quicktrans.png ├── serpapi.png ├── summary.webp ├── trans.webp └── videotrans.png ├── manifest.json ├── popup ├── popup.html └── popup.js ├── public ├── huaci.png ├── main.png ├── mainpage-0925.png ├── models.png ├── prompts.png ├── settings-general.png ├── settings-provider.png ├── settings-quicktrans.png ├── settings-toolbox.png ├── settings.png └── toolbox.png ├── scripts ├── constants.js ├── content.js ├── i18n.js ├── llm.js ├── page-interceptor.js ├── settings.js ├── side_panel.js ├── third │ ├── Readability.js │ ├── aws-sdk-2.1618.0.min.js │ ├── html2canvas.min.js │ ├── katex │ │ ├── auto-render.min.js │ │ ├── katex.min.css │ │ └── katex.min.js │ ├── marked.min.js │ ├── pdf.min.js │ ├── pdf.worker.min.js │ └── youtube-transcript.js └── utils.js ├── settings.html ├── side_panel.html ├── styles └── settings.css └── translations ├── en.json └── zh.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/AGENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/README.MD -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/background.js -------------------------------------------------------------------------------- /css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/css/settings.css -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/css/styles.css -------------------------------------------------------------------------------- /images/chromestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/chromestore.png -------------------------------------------------------------------------------- /images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/file.png -------------------------------------------------------------------------------- /images/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/logo_128.png -------------------------------------------------------------------------------- /images/logo_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/logo_16.png -------------------------------------------------------------------------------- /images/logo_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/logo_32.png -------------------------------------------------------------------------------- /images/logo_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/logo_48.png -------------------------------------------------------------------------------- /images/quicktrans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/quicktrans.png -------------------------------------------------------------------------------- /images/serpapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/serpapi.png -------------------------------------------------------------------------------- /images/summary.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/summary.webp -------------------------------------------------------------------------------- /images/trans.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/trans.webp -------------------------------------------------------------------------------- /images/videotrans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/images/videotrans.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/manifest.json -------------------------------------------------------------------------------- /popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/popup/popup.html -------------------------------------------------------------------------------- /popup/popup.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/huaci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/huaci.png -------------------------------------------------------------------------------- /public/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/main.png -------------------------------------------------------------------------------- /public/mainpage-0925.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/mainpage-0925.png -------------------------------------------------------------------------------- /public/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/models.png -------------------------------------------------------------------------------- /public/prompts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/prompts.png -------------------------------------------------------------------------------- /public/settings-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/settings-general.png -------------------------------------------------------------------------------- /public/settings-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/settings-provider.png -------------------------------------------------------------------------------- /public/settings-quicktrans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/settings-quicktrans.png -------------------------------------------------------------------------------- /public/settings-toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/settings-toolbox.png -------------------------------------------------------------------------------- /public/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/settings.png -------------------------------------------------------------------------------- /public/toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/public/toolbox.png -------------------------------------------------------------------------------- /scripts/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/constants.js -------------------------------------------------------------------------------- /scripts/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/content.js -------------------------------------------------------------------------------- /scripts/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/i18n.js -------------------------------------------------------------------------------- /scripts/llm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/llm.js -------------------------------------------------------------------------------- /scripts/page-interceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/page-interceptor.js -------------------------------------------------------------------------------- /scripts/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/settings.js -------------------------------------------------------------------------------- /scripts/side_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/side_panel.js -------------------------------------------------------------------------------- /scripts/third/Readability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/Readability.js -------------------------------------------------------------------------------- /scripts/third/aws-sdk-2.1618.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/aws-sdk-2.1618.0.min.js -------------------------------------------------------------------------------- /scripts/third/html2canvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/html2canvas.min.js -------------------------------------------------------------------------------- /scripts/third/katex/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/katex/auto-render.min.js -------------------------------------------------------------------------------- /scripts/third/katex/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/katex/katex.min.css -------------------------------------------------------------------------------- /scripts/third/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/katex/katex.min.js -------------------------------------------------------------------------------- /scripts/third/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/marked.min.js -------------------------------------------------------------------------------- /scripts/third/pdf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/pdf.min.js -------------------------------------------------------------------------------- /scripts/third/pdf.worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/pdf.worker.min.js -------------------------------------------------------------------------------- /scripts/third/youtube-transcript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/third/youtube-transcript.js -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/scripts/utils.js -------------------------------------------------------------------------------- /settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/settings.html -------------------------------------------------------------------------------- /side_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/side_panel.html -------------------------------------------------------------------------------- /styles/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/styles/settings.css -------------------------------------------------------------------------------- /translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/translations/en.json -------------------------------------------------------------------------------- /translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisherdaddy/FisherAI/HEAD/translations/zh.json --------------------------------------------------------------------------------