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": "DocTrackr", "description": "Analyze Google\u2122 Docs Revisions", "version": "1.5", "icons": { "16": "icons\/icon-16.png", "38": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "oauth2": { "client_id": "1085968135132-fhc8vhe17b3p1ok49t4af3cvl9mqo8fh.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/drive.readonly" ] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "DocTrackr", "default_popup": "popup.html", "default_icon": "icons\/image.png" }, "permissions": [ "tabs", "identity", "storage" ], "host_permissions": [ "https:\/\/docs.google.com\/*" ], "content_scripts": [ { "matches": [ "<all_urls>", "*:\/\/docs.google.com\/*\/*\/edit*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "all-revision.html", "allrevision.js", "popup.css" ], "matches": [ "<all_urls>" ] } ] }