Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Unified Diff: tools/telemetry/unittest_data/auto_provider/manifest.json

Issue 11882033: Telemetry support for extensions. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/unittest_data/auto_provider/manifest.json
===================================================================
--- tools/telemetry/unittest_data/auto_provider/manifest.json (revision 0)
+++ tools/telemetry/unittest_data/auto_provider/manifest.json (revision 0)
@@ -0,0 +1,86 @@
+{
+ "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDr+Q7QFcTr4Wmn9sSICKWbxnYLhIM0ERbcapZCDmpAkiBUhOPt+KkYnTdUFl4Kx2xv02MwIowh36Fho9Dhqh7cPWGIPsLHUaJosO6t6oaHxQsMQS/K4MlnP5pNJykExo82DcajSXGV+mIQH3RslxL+XhtmIh2BQLwbizVG0bA+mwIDAQAB",
+ "name": "Telemetry Extension Provider",
+ "version": "1",
+ "manifest_version": 2,
+ "description": "Extension API access provider for Telemetry",
+ "default_locale": "en",
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "content_security_policy": "default-src 'self' 'unsafe-eval'; script-src 'self' 'unsafe-eval';",
+ "permissions": [
+ "activeTab",
+ "alarms",
+ "app.runtime",
+ "app.window",
+ "appNotifications",
+ "audioCapture",
+ "background",
+ "bluetooth",
+ "bookmarkManagerPrivate",
+ "bookmarks",
+ "browsingData",
+ "chromePrivate",
+ "chromeosInfoPrivate",
+ "clipboardRead",
+ "clipboardWrite",
+ "cloudPrintPrivate",
+ "contentSettings",
+ "contextMenus",
+ "cookies",
+ "debugger",
+ "devtools",
+ "declarativeWebRequest",
+ "downloads",
+ "experimental",
+ "fileBrowserHandler",
+ "fileBrowserPrivate",
+ "fileSystem",
+ "fileSystem.write",
+ "fontSettings",
+ "geolocation",
+ "history",
+ "idle",
+ "input",
+ "inputMethodPrivate",
+ "managedModePrivate",
+ "management",
+ "mediaGalleries",
+ "mediaGalleries.allAutoDetected",
+ "mediaGalleries.read",
+ "mediaGalleriesPrivate",
+ "mediaPlayerPrivate",
+ "metricsPrivate",
+ "notifications",
+ "echoPrivate",
+ "pageCapture",
+ "plugin",
+ "privacy",
+ "proxy",
+ "pushMessaging",
+ "rtcPrivate",
+ "runtime",
+ "serial",
+ "syncFileSystem",
+ {"socket": ["tcp-connect", "tcp-listen"]},
+ "storage",
+ "systemPrivate",
+ "tabs",
+ "tabCapture",
+ "terminalPrivate",
+ "topSites",
+ "tts",
+ "ttsEngine",
+ "unlimitedStorage",
+ "usb",
+ "videoCapture",
+ "wallpaperPrivate",
+ "webNavigation",
+ "webSocketProxyPrivate",
+ "webstorePrivate",
+ "webRequest",
+ "webRequestBlocking",
+ "webview"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698