Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "OpenAI Study Buddy", "short_name": "oaisbv0", "version": "1.0.0.0", "author": "Erik Newland", "description": "A simple tool to give you coding hints but never the answer. Highlight the code and press Ctrl + Shift + 1.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/extensionpay.com\/*" ], "js": [ "ExtPay.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*\/", "https:\/\/*\/" ], "js": [ "ExtPay.js" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "storage", "scripting", "activeTab" ], "commands": { "inject-script": { "suggested_key": "Ctrl+Shift+1", "description": "Inject a script on the page" } } }