AlgoBuddyAI
You AI Assistant for coding interviews
What is AlgoBuddyAI?
AlgoBuddyAI is a Chrome extension developed by AlgoBuddyAI, and its main feature is "You AI Assistant for coding interviews".
Extension Screenshots
Download AlgoBuddyAI Extension CRX File
Download AlgoBuddyAI extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
AlgoBuddyAI is a tool to help you solve coding problems by giving you an LLM at your fingertips. If you are working on a coding problem, for fun, or for interview prep, simply click on the button to get an answer to any of your questions.
Extension Basic Information
Name | AlgoBuddyAI |
ID | njipmdodndhhjphmnancjbbdppgncchi |
Official URL | https://chromewebstore.google.com/detail/algobuddyai/njipmdodndhhjphmnancjbbdppgncchi |
Description | You AI Assistant for coding interviews |
File Size | 500 KB |
Installation Count | 57 |
Current Version | 1.1.5 |
Last Updated | 2023-12-23 |
Publish Date | 2023-03-03 |
Rating | 5.00/5 Total 1 Ratings |
Developer | AlgoBuddyAI |
[email protected] | |
Payment Type | in_app |
Extension Website | https://algobuddyai.com |
Help Page URL | https://algobuddyai.com/contact |
Privacy Policy Page URL | https://algobuddyai.com/privacy.html |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AlgoBuddyAI", "description": "You AI Assistant for coding interviews", "version": "1.1.5", "manifest_version": 3, "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhPsXU+8440fJUNMurXTDCbx0+BrJKSgn+5yt1FvaC6XMla5+60wwuRoH9Il18tcxsdK7AoVIncJ2dDngx03rBcpnOXLmPWz8g8E62yUAIXmLFe2ZI5VF71YVUzX+EqkLtzTXv62s73kzCcdoluU2lZW5CLJ\/tgzvsEJz2qoACu+RRPa9Pck8wxo1\/L9FXnDXi1IfxBDVK1wgHHwaAJ4AD21iTNtwBNF440hqGzydJSfVyOgoHNMP0O7Ll3LZKshjcXaDDb7eYKcMmJHe3e745r5UqRaadOLSD6H2l7p31OfzHwRl92Q0LYf4qRMwkt2MaAXSuiMyUnZJxwR9lqpkdQIDAQAB", "icons": { "16": "logo.png", "32": "logo.png", "48": "logo.png", "128": "logo.png" }, "host_permissions": [ "https:\/\/*.openai.com\/" ], "permissions": [ "activeTab", "storage", "https:\/\/*.openai.com\/" ], "background": { "service_worker": "background\/index.js" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/app.coderpad.io\/*", "https:\/\/*.leetcode.com\/problems*", "https:\/\/www.hackerrank.com\/*", "https:\/\/algobuddyai.com\/*" ], "js": [ "content-script\/index.js" ], "css": [ "github-markdown.css", "styles.css" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';", "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';" } } |