GPT Code Reviewer
This extension enables users to upload files for ChatGPT to analyze and summarize.
Τι είναι το GPT Code Reviewer;
Το GPT Code Reviewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer, και η κύρια λειτουργία του είναι "This extension enables users to upload files for ChatGPT to analyze and summarize.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GPT Code Reviewer
Λήψη αρχείων επέκτασης GPT Code Reviewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The author is 陳棨煜 (Chi-Yu Chen) in MHCI lab, Dept CSIE, National Formosa University. The GPT Code Reviewer Ext will automatically put multiple project source content into ChatGPT input field with check length. With the prompts: manual, API, parameters,flow chart and review. The GPT Code Reviewer will analyze these code, ans it be your great coding helper.
Βασικές Πληροφορίες Επέκτασης
Όνομα | GPT Code Reviewer |
ID | mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
Επίσημο URL | https://chromewebstore.google.com/detail/gpt-code-reviewer/mfebbjnnjjedlmbgpdfpkfmmkghaiboo |
Περιγραφή | This extension enables users to upload files for ChatGPT to analyze and summarize. |
Μέγεθος Αρχείου | 24.96 KB |
Αριθμός Εγκαταστάσεων | 710 |
Τρέχουσα Έκδοση | 3.4 |
Τελευταία Ενημέρωση | 2024-03-01 |
Ημερομηνία Δημοσίευσης | 2023-04-15 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://sites.google.com/view/tonychen/my-projects/gpt-code-reviewer |
Διεύθυνση URL της Σελίδας Βοήθειας | https://sites.google.com/view/bookai |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.tsg.com.tw/blog-detail34-privacy-policy.htm |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Code Reviewer", "version": "3.4", "description": "This extension enables users to upload files for ChatGPT to analyze and summarize.", "icons": { "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ], "action": { "default_title": "GPT Code Reviewer" }, "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "tabs" ] } |