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", "name": "Alice Keeler Webcam Record", "version": "1.1", "manifest_version": 2, "description": "Record 30 seconds of your webcam into Drive!", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "identity", "activeTab", "tabs", "<all_urls>", "storage" ], "oauth2": { "client_id": "980342292470-ttlch1q7jn30l0atg06eeqb0r8u5qmvk.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/drive.file" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "WebCam Record", "default_popup": "popup.html" } }