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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDr+Q7QFcTr4Wmn9sSICKWbxnYLhIM0ER bcapZCDmpAkiBUhOPt+KkYnTdUFl4Kx2xv02MwIowh36Fho9Dhqh7cPWGIPsLHUaJosO6t6oaHxQsMQS /K4MlnP5pNJykExo82DcajSXGV+mIQH3RslxL+XhtmIh2BQLwbizVG0bA+mwIDAQAB",
3 "name": "Telemetry Extension Provider",
4 "version": "1",
5 "manifest_version": 2,
6 "description": "Extension API access provider for Telemetry",
7 "default_locale": "en",
8 "background": {
9 "scripts": ["background.js"]
10 },
11 "content_security_policy": "default-src 'self' 'unsafe-eval'; script-src 'self ' 'unsafe-eval';",
12 "permissions": [
13 "activeTab",
14 "alarms",
15 "app.runtime",
16 "app.window",
17 "appNotifications",
18 "audioCapture",
19 "background",
20 "bluetooth",
21 "bookmarkManagerPrivate",
22 "bookmarks",
23 "browsingData",
24 "chromePrivate",
25 "chromeosInfoPrivate",
26 "clipboardRead",
27 "clipboardWrite",
28 "cloudPrintPrivate",
29 "contentSettings",
30 "contextMenus",
31 "cookies",
32 "debugger",
33 "devtools",
34 "declarativeWebRequest",
35 "downloads",
36 "experimental",
37 "fileBrowserHandler",
38 "fileBrowserPrivate",
39 "fileSystem",
40 "fileSystem.write",
41 "fontSettings",
42 "geolocation",
43 "history",
44 "idle",
45 "input",
46 "inputMethodPrivate",
47 "managedModePrivate",
48 "management",
49 "mediaGalleries",
50 "mediaGalleries.allAutoDetected",
51 "mediaGalleries.read",
52 "mediaGalleriesPrivate",
53 "mediaPlayerPrivate",
54 "metricsPrivate",
55 "notifications",
56 "echoPrivate",
57 "pageCapture",
58 "plugin",
59 "privacy",
60 "proxy",
61 "pushMessaging",
62 "rtcPrivate",
63 "runtime",
64 "serial",
65 "syncFileSystem",
66 {"socket": ["tcp-connect", "tcp-listen"]},
67 "storage",
68 "systemPrivate",
69 "tabs",
70 "tabCapture",
71 "terminalPrivate",
72 "topSites",
73 "tts",
74 "ttsEngine",
75 "unlimitedStorage",
76 "usb",
77 "videoCapture",
78 "wallpaperPrivate",
79 "webNavigation",
80 "webSocketProxyPrivate",
81 "webstorePrivate",
82 "webRequest",
83 "webRequestBlocking",
84 "webview"
85 ]
86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698