summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/common/extensions/docs
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-08 14:30:41 +0200
committerJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-12 13:49:54 +0200
commitab0a50979b9eb4dfa3320eff7e187e41efedf7a9 (patch)
tree498dfb8a97ff3361a9f7486863a52bb4e26bb898 /chromium/chrome/common/extensions/docs
parent4ce69f7403811819800e7c5ae1318b2647e778d1 (diff)
Update Chromium to beta version 37.0.2062.68
Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'chromium/chrome/common/extensions/docs')
-rw-r--r--chromium/chrome/common/extensions/docs/examples/api/fontSettings/manifest.json2
-rw-r--r--chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json5
-rw-r--r--chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/manifest.json27
-rw-r--r--chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_url/manifest.json7
-rw-r--r--chromium/chrome/common/extensions/docs/examples/apps/calculator/app/manifest.json5
-rw-r--r--chromium/chrome/common/extensions/docs/examples/extensions/benchmark/manifest.json19
-rw-r--r--chromium/chrome/common/extensions/docs/server2/known_broken_links.json41
-rw-r--r--chromium/chrome/common/extensions/docs/server2/test_data/branch_utility/second.json1113
-rw-r--r--chromium/chrome/common/extensions/docs/server2/test_data/file_system/stat_result.json1
-rw-r--r--chromium/chrome/common/extensions/docs/server2/test_data/github_file_system/expected_list.json2
-rw-r--r--chromium/chrome/common/extensions/docs/server2/test_data/test_json/fake_data_source.json112
-rw-r--r--chromium/chrome/common/extensions/docs/templates/json/apps_sidenav.json88
-rw-r--r--chromium/chrome/common/extensions/docs/templates/json/chrome_sidenav.json1085
-rw-r--r--chromium/chrome/common/extensions/docs/templates/json/content_providers.json42
-rw-r--r--chromium/chrome/common/extensions/docs/templates/json/extensions_sidenav.json84
-rw-r--r--chromium/chrome/common/extensions/docs/templates/json/intro_tables.json72
-rw-r--r--chromium/chrome/common/extensions/docs/templates/json/manifest.json27
-rw-r--r--chromium/chrome/common/extensions/docs/templates/json/permissions.json7
-rw-r--r--chromium/chrome/common/extensions/docs/templates/json/whats_new.json367
-rw-r--r--chromium/chrome/common/extensions/docs/templates/public/apps/redirects.json19
-rw-r--r--chromium/chrome/common/extensions/docs/templates/public/extensions/redirects.json17
-rw-r--r--chromium/chrome/common/extensions/docs/templates/public/redirects.json7
22 files changed, 1134 insertions, 2015 deletions
diff --git a/chromium/chrome/common/extensions/docs/examples/api/fontSettings/manifest.json b/chromium/chrome/common/extensions/docs/examples/api/fontSettings/manifest.json
index edb7559c809..2829fecb424 100644
--- a/chromium/chrome/common/extensions/docs/examples/api/fontSettings/manifest.json
+++ b/chromium/chrome/common/extensions/docs/examples/api/fontSettings/manifest.json
@@ -1,6 +1,6 @@
{
"name": "Advanced Font Settings",
- "version": "0.66",
+ "version": "0.67",
"manifest_version": 2,
"description": "Customize per-script font settings.",
"options_page": "options.html",
diff --git a/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json b/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json
index f14c8ad5006..0ebfe5cef4a 100644
--- a/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json
+++ b/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json
@@ -13,7 +13,10 @@
},
"content_scripts" : [
{
- "matches" : [ "http://*/*" ],
+ "matches" : [
+ "http://*/*",
+ "https://*/*"
+ ],
"js" : [ "contentscript.js" ],
"run_at" : "document_idle",
"all_frames" : false
diff --git a/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/manifest.json b/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/manifest.json
index 2b09d279021..79134a72efa 100644
--- a/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/manifest.json
+++ b/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/manifest.json
@@ -1,29 +1,20 @@
{
"name" : "Page action by content",
"version" : "1.1",
- "description" : "Shows a page action for HTML pages containing the word 'sandwich'",
+ "description" : "Shows a page action for HTML pages containing a video",
"background" : {
- "scripts": ["background.js"]
+ "scripts": ["background.js"],
+ "persistent": false
},
"page_action" :
{
- "default_icon" : "sandwich-19.png",
- "default_title" : "There's a 'sandwich' in this page!"
+ "default_icon" : "video-19.png",
+ "default_title" : "There's a <video> in this page!"
},
- "content_scripts" : [
- {
- "matches" : [
- "http://*/*",
- "https://*/*"
- ],
- "js" : ["contentscript.js"],
- "run_at" : "document_idle",
- "all_frames" : false
- }
- ],
+ "permissions": [ "declarativeContent" ],
"icons" : {
- "48" : "sandwich-48.png",
- "128" : "sandwich-128.png"
+ "48" : "video-48.png",
+ "128" : "video-128.png"
},
"manifest_version": 2
-} \ No newline at end of file
+}
diff --git a/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_url/manifest.json b/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_url/manifest.json
index 631ed9e0795..5c20902fd4e 100644
--- a/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_url/manifest.json
+++ b/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_url/manifest.json
@@ -2,14 +2,17 @@
"name": "Page action by URL",
"version": "1.0",
"description": "Shows a page action for urls which have the letter 'g' in them.",
- "background": { "scripts": ["background.js"] },
+ "background": {
+ "scripts": ["background.js"],
+ "persistent": false
+ },
"page_action" :
{
"default_icon" : "icon-19.png",
"default_title" : "There's a 'G' in this URL!"
},
"permissions" : [
- "tabs"
+ "declarativeContent"
],
"icons" : {
"48" : "icon-48.png",
diff --git a/chromium/chrome/common/extensions/docs/examples/apps/calculator/app/manifest.json b/chromium/chrome/common/extensions/docs/examples/apps/calculator/app/manifest.json
index 76c570d8c7c..09b249e0d8c 100644
--- a/chromium/chrome/common/extensions/docs/examples/apps/calculator/app/manifest.json
+++ b/chromium/chrome/common/extensions/docs/examples/apps/calculator/app/manifest.json
@@ -3,11 +3,10 @@
"description": "A simple calculator.",
"manifest_version": 2,
"minimum_chrome_version": "23",
- "version": "1.3.2",
+ "version": "1.3.3",
"app": {"background": {"scripts": ["model.js", "view.js", "controller.js"]}},
"icons": {
"16": "images/icon-16x16.png",
"128": "images/icon-128x128.png"
- },
- "permissions": ["storage"]
+ }
}
diff --git a/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/manifest.json b/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/manifest.json
deleted file mode 100644
index bff719b3a22..00000000000
--- a/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/manifest.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "Page Benchmarker",
- "version": "1.3.4.0",
- "manifest_version": 2,
- "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
- "description": "Chromium Page Benchmarker.",
- "background": {
- "page": "background.html",
- "persistent": false
- },
- "browser_action": {
- "default_title": "Benchmark page load time",
- "default_icon": "stopwatch.jpg"
- },
- "options_page": "options.html",
- "permissions": [
- "tabs", "https://*/*", "http://*/*"
- ]
-}
diff --git a/chromium/chrome/common/extensions/docs/server2/known_broken_links.json b/chromium/chrome/common/extensions/docs/server2/known_broken_links.json
index 468fe3c095d..37827912ee7 100644
--- a/chromium/chrome/common/extensions/docs/server2/known_broken_links.json
+++ b/chromium/chrome/common/extensions/docs/server2/known_broken_links.json
@@ -560,7 +560,6 @@
[
404,
"apps/declare_permissions.html",
- "apps/adview.html",
"target page not found"
],
[
@@ -662,7 +661,6 @@
[
404,
"apps/private_apis.html",
- "apps/adview.html",
"target page not found"
],
[
@@ -1628,7 +1626,6 @@
[
404,
"extensions/private_apis.html",
- "extensions/adview.html",
"target page not found"
],
[
@@ -2026,5 +2023,41 @@
"extensions/declarativeContent.html",
"#type-Rule",
"target anchor not found"
+ ],
+ [
+ 200,
+ "extensions/whats_new.html",
+ "#badge",
+ "target anchor not found"
+ ],
+ [
+ 200,
+ "extensions/whats_new.html",
+ "#icon",
+ "target anchor not found"
+ ],
+ [
+ 200,
+ "extensions/whats_new.html",
+ "#manifest",
+ "target anchor not found"
+ ],
+ [
+ 200,
+ "apps/whats_new.html",
+ "#manifest",
+ "target anchor not found"
+ ],
+ [
+ 200,
+ "extensions/whats_new.html",
+ "#popups",
+ "target anchor not found"
+ ],
+ [
+ 200,
+ "extensions/whats_new.html",
+ "#tooltip",
+ "target anchor not found"
]
-] \ No newline at end of file
+]
diff --git a/chromium/chrome/common/extensions/docs/server2/test_data/branch_utility/second.json b/chromium/chrome/common/extensions/docs/server2/test_data/branch_utility/second.json
index 73264879175..f14fd588a8f 100644
--- a/chromium/chrome/common/extensions/docs/server2/test_data/branch_utility/second.json
+++ b/chromium/chrome/common/extensions/docs/server2/test_data/branch_utility/second.json
@@ -1,1112 +1 @@
-{
- "dateTimeFormat": "Gregorian",
- "events": [
- {
- "durationEvent": false,
- "start": "Fri Apr 05 2013 18:19:28 PST-0800",
- "title": "win\ndev - 28.0.1500.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Apr 02 2013 17:53:25 PST-0800",
- "title": "win\ndev - 27.0.1453.12"
- },
- {
- "durationEvent": false,
- "start": "Fri Mar 29 2013 18:16:49 PST-0800",
- "title": "win\ndev - 27.0.1453.9"
- },
- {
- "durationEvent": false,
- "start": "Thu Mar 28 2013 18:59:48 PST-0800",
- "title": "win\ndev - 27.0.1453.6"
- },
- {
- "durationEvent": false,
- "start": "Wed Mar 27 2013 01:53:23 PST-0800",
- "title": "win\ndev - 27.0.1453.3"
- },
- {
- "durationEvent": false,
- "start": "Thu Mar 21 2013 21:49:11 PST-0800",
- "title": "win\ndev - 27.0.1448.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Mar 19 2013 00:30:49 PST-0800",
- "title": "win\ndev - 27.0.1444.3"
- },
- {
- "durationEvent": false,
- "start": "Wed Mar 13 2013 17:35:03 PST-0800",
- "title": "win\ndev - 27.0.1438.7"
- },
- {
- "durationEvent": false,
- "start": "Wed Mar 06 2013 18:32:27 PST-0800",
- "title": "win\ndev - 27.0.1430.3"
- },
- {
- "durationEvent": false,
- "start": "Tue Mar 05 2013 23:32:37 PST-0800",
- "title": "win\ndev - 27.0.1430.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Mar 01 2013 01:11:51 PST-0800",
- "title": "win\ndev - 27.0.1425.2"
- },
- {
- "durationEvent": false,
- "start": "Tue Feb 26 2013 22:03:01 PST-0800",
- "title": "win\ndev - 27.0.1423.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Feb 22 2013 00:09:52 PST-0800",
- "title": "win\ndev - 26.0.1410.12"
- },
- {
- "durationEvent": false,
- "start": "Wed Feb 20 2013 00:15:47 PST-0800",
- "title": "win\ndev - 26.0.1410.10"
- },
- {
- "durationEvent": false,
- "start": "Thu Feb 14 2013 20:18:49 PST-0800",
- "title": "win\ndev - 26.0.1410.5"
- },
- {
- "durationEvent": false,
- "start": "Wed Feb 13 2013 01:49:23 PST-0800",
- "title": "win\ndev - 26.0.1410.3"
- },
- {
- "durationEvent": false,
- "start": "Tue Feb 05 2013 00:43:13 PST-0800",
- "title": "win\ndev - 26.0.1403.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Jan 30 2013 21:11:13 PST-0800",
- "title": "win\ndev - 26.0.1397.2"
- },
- {
- "durationEvent": false,
- "start": "Thu Jan 17 2013 22:44:44 PST-0800",
- "title": "win\ndev - 26.0.1386.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Jan 16 2013 01:48:57 PST-0800",
- "title": "win\ndev - 26.0.1384.2"
- },
- {
- "durationEvent": false,
- "start": "Thu Jan 10 2013 23:07:12 PST-0800",
- "title": "win\ndev - 25.0.1364.29"
- },
- {
- "durationEvent": false,
- "start": "Tue Jan 08 2013 00:05:42 PST-0800",
- "title": "win\ndev - 25.0.1364.26"
- },
- {
- "durationEvent": false,
- "start": "Thu Dec 20 2012 22:09:26 PST-0800",
- "title": "win\ndev - 25.0.1364.5"
- },
- {
- "durationEvent": false,
- "start": "Wed Dec 19 2012 02:42:39 PST-0800",
- "title": "win\ndev - 25.0.1364.2"
- },
- {
- "durationEvent": false,
- "start": "Fri Dec 14 2012 02:37:09 PST-0800",
- "title": "win\ndev - 25.0.1359.3"
- },
- {
- "durationEvent": false,
- "start": "Mon Dec 10 2012 22:13:57 PST-0800",
- "title": "win\ndev - 25.0.1354.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Dec 07 2012 00:16:59 PST-0800",
- "title": "win\ndev - 25.0.1349.2"
- },
- {
- "durationEvent": false,
- "start": "Wed Nov 28 2012 23:28:57 PST-0800",
- "title": "win\ndev - 25.0.1337.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Nov 13 2012 00:52:33 PST-0800",
- "title": "win\ndev - 25.0.1323.1"
- },
- {
- "durationEvent": false,
- "start": "Tue Nov 06 2012 19:47:19 PST-0800",
- "title": "win\ndev - 24.0.1312.5"
- },
- {
- "durationEvent": false,
- "start": "Thu Nov 01 2012 19:24:01 PST-0800",
- "title": "win\ndev - 24.0.1312.2"
- },
- {
- "durationEvent": false,
- "start": "Wed Oct 31 2012 00:02:11 PST-0800",
- "title": "win\ndev - 24.0.1312.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Oct 24 2012 19:15:16 PST-0800",
- "title": "win\ndev - 24.0.1305.3"
- },
- {
- "durationEvent": false,
- "start": "Tue Oct 16 2012 21:19:13 PST-0800",
- "title": "win\ndev - 24.0.1297.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Oct 09 2012 21:43:57 PST-0800",
- "title": "win\ndev - 24.0.1290.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Oct 03 2012 00:26:19 PST-0800",
- "title": "win\ndev - 24.0.1284.2"
- },
- {
- "durationEvent": false,
- "start": "Thu Sep 27 2012 18:02:10 PST-0800",
- "title": "win\ndev - 23.0.1271.10"
- },
- {
- "durationEvent": false,
- "start": "Tue Sep 25 2012 21:21:48 PST-0800",
- "title": "win\ndev - 23.0.1271.6"
- },
- {
- "durationEvent": false,
- "start": "Thu Sep 20 2012 19:44:35 PST-0800",
- "title": "win\ndev - 23.0.1271.1"
- },
- {
- "durationEvent": false,
- "start": "Tue Sep 18 2012 22:20:03 PST-0800",
- "title": "win\ndev - 23.0.1270.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Sep 11 2012 00:20:53 PST-0800",
- "title": "win\ndev - 23.0.1262.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Sep 04 2012 22:21:13 PST-0800",
- "title": "win\ndev - 23.0.1255.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Aug 31 2012 18:17:38 PST-0800",
- "title": "win\ndev - 23.0.1251.2"
- },
- {
- "durationEvent": false,
- "start": "Tue Aug 28 2012 00:25:54 PST-0800",
- "title": "win\ndev - 23.0.1246.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Aug 23 2012 23:54:55 PST-0800",
- "title": "win\ndev - 23.0.1243.2"
- },
- {
- "durationEvent": false,
- "start": "Tue Aug 21 2012 23:18:47 PST-0800",
- "title": "win\ndev - 22.0.1229.12"
- },
- {
- "durationEvent": false,
- "start": "Thu Aug 16 2012 23:21:39 PST-0800",
- "title": "win\ndev - 22.0.1229.8"
- },
- {
- "durationEvent": false,
- "start": "Tue Aug 14 2012 23:47:34 PST-0800",
- "title": "win\ndev - 22.0.1229.6"
- },
- {
- "durationEvent": false,
- "start": "Thu Aug 09 2012 20:31:55 PST-0800",
- "title": "win\ndev - 22.0.1229.2"
- },
- {
- "durationEvent": false,
- "start": "Wed Aug 08 2012 00:27:15 PST-0800",
- "title": "win\ndev - 22.0.1229.0"
- },
- {
- "durationEvent": false,
- "start": "Mon Jul 30 2012 23:47:10 PST-0800",
- "title": "win\ndev - 22.0.1221.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Jul 25 2012 18:00:05 PST-0800",
- "title": "win\ndev - 22.0.1215.3"
- },
- {
- "durationEvent": false,
- "start": "Wed Jul 25 2012 17:44:05 PST-0800",
- "title": "win\ndev - 22.0.1207.1"
- },
- {
- "durationEvent": false,
- "start": "Mon Jul 23 2012 23:56:27 PST-0800",
- "title": "win\ndev - 22.0.1215.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Jul 17 2012 00:55:20 PST-0800",
- "title": "win\ndev - 22.0.1207.1"
- },
- {
- "durationEvent": false,
- "start": "Tue Jul 10 2012 00:02:30 PST-0800",
- "title": "win\ndev - 22.0.1201.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Jun 29 2012 02:43:02 PST-0800",
- "title": "win\ndev - 21.0.1180.15"
- },
- {
- "durationEvent": false,
- "start": "Tue Jun 26 2012 02:18:28 PST-0800",
- "title": "win\ndev - 21.0.1180.11"
- },
- {
- "durationEvent": false,
- "start": "Fri Jun 22 2012 00:00:03 PST-0800",
- "title": "win\ndev - 21.0.1180.4"
- },
- {
- "durationEvent": false,
- "start": "Tue Jun 19 2012 23:29:49 PST-0800",
- "title": "win\ndev - 21.0.1180.0"
- },
- {
- "durationEvent": false,
- "start": "Mon Jun 11 2012 23:44:12 PST-0800",
- "title": "win\ndev - 21.0.1171.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Jun 05 2012 00:47:31 PST-0800",
- "title": "win\ndev - 21.0.1163.0"
- },
- {
- "durationEvent": false,
- "start": "Wed May 30 2012 00:52:58 PST-0800",
- "title": "win\ndev - 21.0.1155.2"
- },
- {
- "durationEvent": false,
- "start": "Tue May 22 2012 00:44:35 PST-0800",
- "title": "win\ndev - 21.0.1145.0"
- },
- {
- "durationEvent": false,
- "start": "Thu May 17 2012 23:34:11 PST-0800",
- "title": "win\ndev - 20.0.1132.11"
- },
- {
- "durationEvent": false,
- "start": "Wed May 16 2012 00:34:12 PST-0800",
- "title": "win\ndev - 20.0.1132.8"
- },
- {
- "durationEvent": false,
- "start": "Fri May 11 2012 20:57:40 PST-0800",
- "title": "win\ndev - 20.0.1132.3"
- },
- {
- "durationEvent": false,
- "start": "Wed May 09 2012 01:08:05 PST-0800",
- "title": "win\ndev - 20.0.1130.1"
- },
- {
- "durationEvent": false,
- "start": "Fri May 04 2012 01:43:59 PST-0800",
- "title": "win\ndev - 20.0.1123.4"
- },
- {
- "durationEvent": false,
- "start": "Wed May 02 2012 06:26:54 PST-0800",
- "title": "win\ndev - 20.0.1123.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Apr 25 2012 00:17:05 PST-0800",
- "title": "win\ndev - 20.0.1115.1"
- },
- {
- "durationEvent": false,
- "start": "Thu Apr 19 2012 19:17:27 PST-0800",
- "title": "win\ndev - 20.0.1105.2"
- },
- {
- "durationEvent": false,
- "start": "Wed Apr 18 2012 00:32:32 PST-0800",
- "title": "win\ndev - 20.0.1105.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Apr 10 2012 22:39:50 PST-0800",
- "title": "win\ndev - 20.0.1096.1"
- },
- {
- "durationEvent": false,
- "start": "Fri Apr 06 2012 00:24:37 PST-0800",
- "title": "win\ndev - 19.0.1084.15"
- },
- {
- "durationEvent": false,
- "start": "Tue Apr 03 2012 22:45:44 PST-0800",
- "title": "win\ndev - 19.0.1084.9"
- },
- {
- "durationEvent": false,
- "start": "Thu Mar 29 2012 23:53:38 PST-0800",
- "title": "win\ndev - 19.0.1084.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Mar 28 2012 20:19:37 PST-0800",
- "title": "win\ndev - 19.0.1081.2"
- },
- {
- "durationEvent": false,
- "start": "Fri Mar 23 2012 22:11:16 PST-0800",
- "title": "win\ndev - 19.0.1077.3"
- },
- {
- "durationEvent": false,
- "start": "Thu Mar 15 2012 15:39:24 PST-0800",
- "title": "win\ndev - 19.0.1068.1"
- },
- {
- "durationEvent": false,
- "start": "Tue Mar 13 2012 23:14:16 PST-0800",
- "title": "win\ndev - 19.0.1068.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Mar 07 2012 02:29:03 PST-0800",
- "title": "win\ndev - 19.0.1061.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Feb 29 2012 00:35:00 PST-0800",
- "title": "win\ndev - 19.0.1055.1"
- },
- {
- "durationEvent": false,
- "start": "Fri Feb 24 2012 00:15:03 PST-0800",
- "title": "win\ndev - 19.0.1049.3"
- },
- {
- "durationEvent": false,
- "start": "Wed Feb 15 2012 01:26:52 PST-0800",
- "title": "win\ndev - 19.0.1041.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Feb 10 2012 22:28:43 PST-0800",
- "title": "win\ndev - 19.0.1036.7"
- },
- {
- "durationEvent": false,
- "start": "Wed Feb 08 2012 02:11:36 PST-0800",
- "title": "win\ndev - 18.0.1025.7"
- },
- {
- "durationEvent": false,
- "start": "Fri Feb 03 2012 02:05:01 PST-0800",
- "title": "win\ndev - 18.0.1025.3"
- },
- {
- "durationEvent": false,
- "start": "Wed Feb 01 2012 00:50:43 PST-0800",
- "title": "win\ndev - 18.0.1025.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Jan 25 2012 01:52:32 PST-0800",
- "title": "win\ndev - 18.0.1017.2"
- },
- {
- "durationEvent": false,
- "start": "Wed Jan 18 2012 02:18:21 PST-0800",
- "title": "win\ndev - 18.0.1010.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Jan 11 2012 04:43:37 PST-0800",
- "title": "win\ndev - 18.0.1003.1"
- },
- {
- "durationEvent": false,
- "start": "Thu Jan 05 2012 00:02:51 PST-0800",
- "title": "win\ndev - 17.0.963.26"
- },
- {
- "durationEvent": false,
- "start": "Fri Dec 16 2011 02:56:07 PST-0800",
- "title": "win\ndev - 17.0.963.12"
- },
- {
- "durationEvent": false,
- "start": "Tue Dec 13 2011 00:20:16 PST-0800",
- "title": "win\ndev - 17.0.963.6"
- },
- {
- "durationEvent": false,
- "start": "Fri Dec 09 2011 00:45:52 PST-0800",
- "title": "win\ndev - 17.0.963.2"
- },
- {
- "durationEvent": false,
- "start": "Tue Dec 06 2011 23:45:11 PST-0800",
- "title": "win\ndev - 17.0.963.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Nov 18 2011 00:13:13 PST-0800",
- "title": "win\ndev - 17.0.942.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Nov 15 2011 00:36:36 PST-0800",
- "title": "win\ndev - 17.0.938.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Nov 08 2011 00:01:54 PST-0800",
- "title": "win\ndev - 17.0.932.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Nov 03 2011 23:38:13 PST-0800",
- "title": "win\ndev - 17.0.928.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Nov 01 2011 23:05:53 PST-0800",
- "title": "win\ndev - 16.0.912.21"
- },
- {
- "durationEvent": false,
- "start": "Thu Oct 27 2011 23:08:29 PST-0800",
- "title": "win\ndev - 16.0.912.15"
- },
- {
- "durationEvent": false,
- "start": "Wed Oct 26 2011 00:33:00 PST-0800",
- "title": "win\ndev - 16.0.912.12"
- },
- {
- "durationEvent": false,
- "start": "Thu Oct 20 2011 23:31:54 PST-0800",
- "title": "win\ndev - 16.0.912.4"
- },
- {
- "durationEvent": false,
- "start": "Tue Oct 18 2011 23:21:28 PST-0800",
- "title": "win\ndev - 16.0.912.0"
- },
- {
- "durationEvent": false,
- "start": "Mon Oct 10 2011 23:51:01 PST-0800",
- "title": "win\ndev - 16.0.904.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Oct 04 2011 00:00:02 PST-0800",
- "title": "win\ndev - 16.0.899.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Sep 27 2011 00:01:19 PST-0800",
- "title": "win\ndev - 16.0.891.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Sep 23 2011 00:00:04 PST-0800",
- "title": "win\ndev - 16.0.889.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Sep 21 2011 00:29:45 PST-0800",
- "title": "win\ndev - 15.0.874.21"
- },
- {
- "durationEvent": false,
- "start": "Thu Sep 15 2011 23:35:15 PST-0800",
- "title": "win\ndev - 15.0.874.15"
- },
- {
- "durationEvent": false,
- "start": "Tue Sep 13 2011 23:00:02 PST-0800",
- "title": "win\ndev - 15.0.874.12"
- },
- {
- "durationEvent": false,
- "start": "Fri Sep 09 2011 01:15:01 PST-0800",
- "title": "win\ndev - 15.0.874.5"
- },
- {
- "durationEvent": false,
- "start": "Wed Sep 07 2011 23:28:26 PST-0800",
- "title": "win\ndev - 15.0.874.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Aug 30 2011 00:53:44 PST-0800",
- "title": "win\ndev - 15.0.865.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Aug 24 2011 23:45:01 PST-0800",
- "title": "win\ndev - 15.0.861.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Aug 17 2011 17:50:57 PST-0800",
- "title": "win\ndev - 15.0.854.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Aug 16 2011 23:32:55 PST-0800",
- "title": "win\ndev - 15.0.849.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Aug 16 2011 23:17:42 PST-0800",
- "title": "win\ndev - 15.0.854.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Aug 11 2011 23:58:00 PST-0800",
- "title": "win\ndev - 15.0.849.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Aug 10 2011 23:45:12 PST-0800",
- "title": "win\ndev - 14.0.835.35"
- },
- {
- "durationEvent": false,
- "start": "Mon Aug 08 2011 23:39:27 PST-0800",
- "title": "win\ndev - 14.0.835.29"
- },
- {
- "durationEvent": false,
- "start": "Fri Aug 05 2011 00:20:22 PST-0800",
- "title": "win\ndev - 14.0.835.18"
- },
- {
- "durationEvent": false,
- "start": "Mon Aug 01 2011 23:30:39 PST-0800",
- "title": "win\ndev - 14.0.835.15"
- },
- {
- "durationEvent": false,
- "start": "Fri Jul 29 2011 00:07:02 PST-0800",
- "title": "win\ndev - 14.0.835.8"
- },
- {
- "durationEvent": false,
- "start": "Wed Jul 27 2011 00:29:22 PST-0800",
- "title": "win\ndev - 14.0.835.2"
- },
- {
- "durationEvent": false,
- "start": "Tue Jul 19 2011 00:18:39 PST-0800",
- "title": "win\ndev - 14.0.825.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Jul 12 2011 00:19:19 PST-0800",
- "title": "win\ndev - 14.0.814.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Jun 28 2011 00:25:51 PST-0800",
- "title": "win\ndev - 14.0.803.0"
- },
- {
- "durationEvent": false,
- "start": "Mon Jun 20 2011 23:31:21 PST-0800",
- "title": "win\ndev - 14.0.797.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Jun 16 2011 23:24:40 PST-0800",
- "title": "win\ndev - 14.0.794.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Jun 16 2011 00:50:32 PST-0800",
- "title": "win\ndev - 13.0.782.24"
- },
- {
- "durationEvent": false,
- "start": "Tue Jun 14 2011 01:22:42 PST-0800",
- "title": "win\ndev - 13.0.782.20"
- },
- {
- "durationEvent": false,
- "start": "Fri Jun 10 2011 00:54:02 PST-0800",
- "title": "win\ndev - 13.0.782.14"
- },
- {
- "durationEvent": false,
- "start": "Wed Jun 08 2011 21:28:42 PST-0800",
- "title": "win\ndev - 13.0.782.13"
- },
- {
- "durationEvent": false,
- "start": "Wed Jun 08 2011 00:42:42 PST-0800",
- "title": "win\ndev - 13.0.782.11"
- },
- {
- "durationEvent": false,
- "start": "Mon Jun 06 2011 05:45:01 PST-0800",
- "title": "win\ndev - 13.0.782.10"
- },
- {
- "durationEvent": false,
- "start": "Thu Jun 02 2011 00:18:23 PST-0800",
- "title": "win\ndev - 13.0.782.1"
- },
- {
- "durationEvent": false,
- "start": "Tue May 24 2011 00:23:25 PST-0800",
- "title": "win\ndev - 13.0.772.0"
- },
- {
- "durationEvent": false,
- "start": "Tue May 17 2011 21:36:01 PST-0800",
- "title": "win\ndev - 13.0.767.1"
- },
- {
- "durationEvent": false,
- "start": "Thu May 12 2011 21:30:02 PST-0800",
- "title": "win\ndev - 13.0.761.0"
- },
- {
- "durationEvent": false,
- "start": "Sat May 07 2011 00:26:42 PST-0800",
- "title": "win\ndev - 12.0.742.30"
- },
- {
- "durationEvent": false,
- "start": "Fri May 06 2011 00:50:01 PST-0800",
- "title": "win\ndev - 12.0.742.21"
- },
- {
- "durationEvent": false,
- "start": "Tue May 03 2011 01:32:45 PST-0800",
- "title": "win\ndev - 12.0.742.16"
- },
- {
- "durationEvent": false,
- "start": "Fri Apr 29 2011 00:47:01 PST-0800",
- "title": "win\ndev - 12.0.742.12"
- },
- {
- "durationEvent": false,
- "start": "Tue Apr 26 2011 00:48:15 PST-0800",
- "title": "win\ndev - 12.0.742.9"
- },
- {
- "durationEvent": false,
- "start": "Fri Apr 22 2011 21:52:40 PST-0800",
- "title": "win\ndev - 12.0.742.5"
- },
- {
- "durationEvent": false,
- "start": "Thu Apr 21 2011 01:07:21 PST-0800",
- "title": "win\ndev - 12.0.742.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Apr 13 2011 00:18:03 PST-0800",
- "title": "win\ndev - 12.0.733.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Apr 06 2011 01:25:31 PST-0800",
- "title": "win\ndev - 12.0.725.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Mar 24 2011 23:56:50 PST-0800",
- "title": "win\ndev - 12.0.712.0"
- },
- {
- "durationEvent": false,
- "start": "Mon Mar 21 2011 23:12:14 PST-0800",
- "title": "win\ndev - 11.0.696.16"
- },
- {
- "durationEvent": false,
- "start": "Thu Mar 17 2011 23:35:19 PST-0800",
- "title": "win\ndev - 11.0.696.14"
- },
- {
- "durationEvent": false,
- "start": "Wed Mar 16 2011 00:37:36 PST-0800",
- "title": "win\ndev - 11.0.696.12"
- },
- {
- "durationEvent": false,
- "start": "Fri Mar 11 2011 02:25:22 PST-0800",
- "title": "win\ndev - 11.0.696.3"
- },
- {
- "durationEvent": false,
- "start": "Wed Mar 09 2011 02:42:49 PST-0800",
- "title": "win\ndev - 11.0.696.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Mar 03 2011 22:40:08 PST-0800",
- "title": "win\ndev - 11.0.686.3"
- },
- {
- "durationEvent": false,
- "start": "Tue Mar 01 2011 20:35:16 PST-0800",
- "title": "win\ndev - 11.0.686.1"
- },
- {
- "durationEvent": false,
- "start": "Tue Mar 01 2011 02:36:12 PST-0800",
- "title": "win\ndev - 11.0.686.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Feb 17 2011 23:15:13 PST-0800",
- "title": "win\ndev - 11.0.672.2"
- },
- {
- "durationEvent": false,
- "start": "Wed Feb 16 2011 23:02:09 PST-0800",
- "title": "win\ndev - 10.0.648.82"
- },
- {
- "durationEvent": false,
- "start": "Wed Feb 09 2011 01:08:19 PST-0800",
- "title": "win\ndev - 10.0.648.45"
- },
- {
- "durationEvent": false,
- "start": "Fri Feb 04 2011 01:31:33 PST-0800",
- "title": "win\ndev - 10.0.648.18"
- },
- {
- "durationEvent": false,
- "start": "Tue Feb 01 2011 04:02:58 PST-0800",
- "title": "win\ndev - 10.0.648.11"
- },
- {
- "durationEvent": false,
- "start": "Thu Jan 27 2011 01:58:03 PST-0800",
- "title": "win\ndev - 10.0.648.6"
- },
- {
- "durationEvent": false,
- "start": "Thu Jan 20 2011 20:34:10 PST-0800",
- "title": "win\ndev - 10.0.642.2"
- },
- {
- "durationEvent": false,
- "start": "Tue Jan 11 2011 20:29:22 PST-0800",
- "title": "win\ndev - 10.0.634.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Jan 06 2011 06:16:24 PST-0800",
- "title": "win\ndev - 10.0.628.0"
- },
- {
- "durationEvent": false,
- "start": "Mon Dec 20 2010 19:43:27 PST-0800",
- "title": "win\ndev - 10.0.612.3"
- },
- {
- "durationEvent": false,
- "start": "Thu Dec 16 2010 23:09:02 PST-0800",
- "title": "win\ndev - 10.0.612.1"
- },
- {
- "durationEvent": false,
- "start": "Tue Dec 14 2010 01:51:30 PST-0800",
- "title": "win\ndev - 9.0.597.19"
- },
- {
- "durationEvent": false,
- "start": "Fri Dec 10 2010 17:40:35 PST-0800",
- "title": "win\ndev - 9.0.597.16"
- },
- {
- "durationEvent": false,
- "start": "Fri Dec 10 2010 02:13:57 PST-0800",
- "title": "win\ndev - 9.0.597.15"
- },
- {
- "durationEvent": false,
- "start": "Tue Dec 07 2010 02:02:57 PST-0800",
- "title": "win\ndev - 9.0.597.10"
- },
- {
- "durationEvent": false,
- "start": "Wed Dec 01 2010 22:58:13 PST-0800",
- "title": "win\ndev - 9.0.597.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Nov 19 2010 01:08:11 PST-0800",
- "title": "win\ndev - 9.0.587.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Nov 10 2010 00:46:46 PST-0800",
- "title": "win\ndev - 9.0.576.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Nov 05 2010 01:20:03 PST-0800",
- "title": "win\ndev - 9.0.570.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Nov 03 2010 01:02:56 PST-0800",
- "title": "win\ndev - 9.0.570.0"
- },
- {
- "durationEvent": false,
- "start": "Sat Oct 30 2010 01:11:40 PST-0800",
- "title": "win\ndev - 8.0.552.23"
- },
- {
- "durationEvent": false,
- "start": "Wed Oct 27 2010 01:07:18 PST-0800",
- "title": "win\ndev - 8.0.552.18"
- },
- {
- "durationEvent": false,
- "start": "Thu Oct 21 2010 23:21:07 PST-0800",
- "title": "win\ndev - 8.0.552.11"
- },
- {
- "durationEvent": false,
- "start": "Tue Oct 19 2010 03:29:35 PST-0800",
- "title": "win\ndev - 8.0.552.5"
- },
- {
- "durationEvent": false,
- "start": "Wed Oct 13 2010 00:03:39 PST-0800",
- "title": "win\ndev - 8.0.552.0"
- },
- {
- "durationEvent": false,
- "start": "Wed Oct 06 2010 22:51:53 PST-0800",
- "title": "win\ndev - 7.0.544.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Sep 30 2010 20:34:16 PST-0800",
- "title": "win\ndev - 7.0.536.2"
- },
- {
- "durationEvent": false,
- "start": "Tue Sep 28 2010 22:49:52 PST-0800",
- "title": "win\ndev - 7.0.517.24"
- },
- {
- "durationEvent": false,
- "start": "Fri Sep 24 2010 23:15:18 PST-0800",
- "title": "win\ndev - 7.0.517.17"
- },
- {
- "durationEvent": false,
- "start": "Fri Sep 17 2010 01:02:24 PST-0800",
- "title": "win\ndev - 7.0.517.8"
- },
- {
- "durationEvent": false,
- "start": "Mon Sep 13 2010 21:15:08 PST-0800",
- "title": "win\ndev - 7.0.517.5"
- },
- {
- "durationEvent": false,
- "start": "Thu Sep 09 2010 01:03:59 PST-0800",
- "title": "win\ndev - 7.0.517.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Aug 26 2010 00:05:03 PST-0800",
- "title": "win\ndev - 7.0.503.0"
- },
- {
- "durationEvent": false,
- "start": "Tue Aug 17 2010 22:28:45 PST-0800",
- "title": "win\ndev - 6.0.495.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Aug 13 2010 14:23:58 PST-0800",
- "title": "win\ndev - 6.0.490.1"
- },
- {
- "durationEvent": false,
- "start": "Fri Aug 06 2010 22:53:12 PST-0800",
- "title": "win\ndev - 6.0.472.25"
- },
- {
- "durationEvent": false,
- "start": "Thu Aug 05 2010 00:22:02 PST-0800",
- "title": "win\ndev - 6.0.472.22"
- },
- {
- "durationEvent": false,
- "start": "Fri Jul 30 2010 23:14:34 PST-0800",
- "title": "win\ndev - 6.0.472.14"
- },
- {
- "durationEvent": false,
- "start": "Wed Jul 28 2010 23:49:30 PST-0800",
- "title": "win\ndev - 6.0.472.11"
- },
- {
- "durationEvent": false,
- "start": "Thu Jul 22 2010 00:09:53 PST-0800",
- "title": "win\ndev - 6.0.472.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Jul 15 2010 22:58:14 PST-0800",
- "title": "win\ndev - 6.0.466.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Jul 09 2010 14:18:49 PST-0800",
- "title": "win\ndev - 6.0.458.1"
- },
- {
- "durationEvent": false,
- "start": "Fri Jul 02 2010 23:12:13 PST-0800",
- "title": "win\ndev - 6.0.453.1"
- },
- {
- "durationEvent": false,
- "start": "Fri Jun 25 2010 01:37:06 PST-0800",
- "title": "win\ndev - 6.0.447.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Jun 18 2010 19:49:04 PST-0800",
- "title": "win\ndev - 6.0.437.3"
- },
- {
- "durationEvent": false,
- "start": "Thu Jun 17 2010 23:02:50 PST-0800",
- "title": "win\ndev - 6.0.427.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Jun 17 2010 18:31:39 PST-0800",
- "title": "win\ndev - 6.0.437.1"
- },
- {
- "durationEvent": false,
- "start": "Wed Jun 09 2010 17:42:14 PST-0800",
- "title": "win\ndev - 6.0.427.0"
- },
- {
- "durationEvent": false,
- "start": "Thu Jun 03 2010 18:37:41 PST-0800",
- "title": "win\ndev - 6.0.422.0"
- },
- {
- "durationEvent": false,
- "start": "Thu May 20 2010 21:03:10 PST-0800",
- "title": "win\ndev - 6.0.408.1"
- },
- {
- "durationEvent": false,
- "start": "Fri May 14 2010 03:19:25 PST-0800",
- "title": "win\ndev - 6.0.401.1"
- },
- {
- "durationEvent": false,
- "start": "Fri May 07 2010 01:36:38 PST-0800",
- "title": "win\ndev - 5.0.396.0"
- },
- {
- "durationEvent": false,
- "start": "Tue May 04 2010 01:31:54 PST-0800",
- "title": "win\ndev - 5.0.375.29"
- },
- {
- "durationEvent": false,
- "start": "Fri Apr 30 2010 22:08:37 PST-0800",
- "title": "win\ndev - 5.0.375.28"
- },
- {
- "durationEvent": false,
- "start": "Tue Apr 27 2010 20:56:13 PST-0800",
- "title": "win\ndev - 5.0.375.23"
- },
- {
- "durationEvent": false,
- "start": "Fri Apr 23 2010 00:30:19 PST-0800",
- "title": "win\ndev - 5.0.375.17"
- },
- {
- "durationEvent": false,
- "start": "Sat Apr 17 2010 01:18:06 PST-0800",
- "title": "win\ndev - 5.0.375.9"
- },
- {
- "durationEvent": false,
- "start": "Wed Apr 14 2010 23:39:10 PST-0800",
- "title": "win\ndev - 5.0.375.7"
- },
- {
- "durationEvent": false,
- "start": "Tue Apr 13 2010 01:11:37 PST-0800",
- "title": "win\ndev - 5.0.375.3"
- },
- {
- "durationEvent": false,
- "start": "Fri Apr 09 2010 01:12:39 PST-0800",
- "title": "win\ndev - 5.0.371.0"
- },
- {
- "durationEvent": false,
- "start": "Fri Apr 02 2010 18:16:57 PST-0800",
- "title": "win\ndev - 5.0.366.2"
- }
- ],
- "wiki-section": "A brief history of Chrome",
- "wiki-url": "http://simile.mit.edu/shelf/"
-}
+[{"timestamp": "2014-06-03 14:20:11.466940", "version": "37.0.2024.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-05-28 17:34:14.640050", "version": "37.0.2017.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-05-23 00:42:16.974880", "version": "37.0.2008.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-05-20 18:31:15.985070", "version": "36.0.1985.18", "os": "win", "channel": "dev"}, {"timestamp": "2014-05-15 23:55:15.924940", "version": "36.0.1985.5", "os": "win", "channel": "dev"}, {"timestamp": "2014-05-13 17:00:10.004960", "version": "36.0.1985.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-05-06 22:39:01.402240", "version": "36.0.1976.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-04-30 21:51:18.067990", "version": "36.0.1964.4", "os": "win", "channel": "dev"}, {"timestamp": "2014-04-29 17:35:11.397850", "version": "36.0.1964.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-04-24 22:42:37.461710", "version": "36.0.1951.5", "os": "win", "channel": "dev"}, {"timestamp": "2014-04-15 23:55:39.012960", "version": "36.0.1941.0", "os": "win", "channel": "dev"}, {"timestamp": "2014-04-10 21:26:42.836030", "version": "36.0.1933.0", "os": "win", "channel": "dev"}, {"timestamp": "2014-04-08 17:40:09.919590", "version": "35.0.1916.27", "os": "win", "channel": "dev"}, {"timestamp": "2014-04-04 14:24:42.078490", "version": "35.0.1916.17", "os": "win", "channel": "dev"}, {"timestamp": "2014-04-03 16:34:05.903530", "version": "35.0.1916.14", "os": "win", "channel": "dev"}, {"timestamp": "2014-03-31 20:24:18.562490", "version": "35.0.1916.6", "os": "win", "channel": "dev"}, {"timestamp": "2014-03-27 19:12:14.284860", "version": "35.0.1912.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-03-25 22:12:43.934170", "version": "35.0.1908.4", "os": "win", "channel": "dev"}, {"timestamp": "2014-03-18 19:12:45.029430", "version": "35.0.1897.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-03-11 15:52:03.062480", "version": "35.0.1883.0", "os": "win", "channel": "dev"}, {"timestamp": "2014-03-04 17:08:05.147800", "version": "35.0.1870.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-02-27 20:15:24.982930", "version": "35.0.1862.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-02-25 18:56:50.835670", "version": "34.0.1847.11", "os": "win", "channel": "dev"}, {"timestamp": "2014-02-20 01:00:09.105560", "version": "34.0.1847.3", "os": "win", "channel": "dev"}, {"timestamp": "2014-02-14 01:02:31.857440", "version": "34.0.1838.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-02-12 08:09:51.218870", "version": "34.0.1833.5", "os": "win", "channel": "dev"}, {"timestamp": "2014-02-06 16:16:44.348590", "version": "34.0.1825.4", "os": "win", "channel": "dev"}, {"timestamp": "2014-02-05 20:10:09.511680", "version": "34.0.1820.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-01-28 20:49:26.805000", "version": "34.0.1809.0", "os": "win", "channel": "dev"}, {"timestamp": "2014-01-21 21:34:21.385560", "version": "34.0.1797.2", "os": "win", "channel": "dev"}, {"timestamp": "2014-01-16 20:06:23.869950", "version": "34.0.1788.0", "os": "win", "channel": "dev"}, {"timestamp": "2014-01-14 15:52:46.003690", "version": "33.0.1750.29", "os": "win", "channel": "dev"}, {"timestamp": "2014-01-13 16:52:00.486800", "version": "33.0.1750.27", "os": "win", "channel": "dev"}, {"timestamp": "2014-01-09 16:13:53.961450", "version": "33.0.1750.22", "os": "win", "channel": "dev"}, {"timestamp": "2014-01-08 05:33:56.762720", "version": "33.0.1750.18", "os": "win", "channel": "dev"}, {"timestamp": "2013-12-19 19:49:09.574590", "version": "33.0.1750.5", "os": "win", "channel": "dev"}, {"timestamp": "2013-12-18 01:33:20.112740", "version": "33.0.1750.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-12-12 20:48:25.292070", "version": "33.0.1736.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-12-11 18:37:56.569580", "version": "33.0.1734.5", "os": "win", "channel": "dev"}, {"timestamp": "2013-12-06 21:42:30.823000", "version": "33.0.1729.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-12-03 16:28:07.934720", "version": "33.0.1726.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-11-21 18:52:48.991750", "version": "33.0.1712.4", "os": "win", "channel": "dev"}, {"timestamp": "2013-11-20 02:16:12.385330", "version": "33.0.1712.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-11-12 16:40:15.159270", "version": "33.0.1707.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-11-07 14:51:35.231580", "version": "32.0.1700.6", "os": "win", "channel": "dev"}, {"timestamp": "2013-11-05 23:25:13.273680", "version": "32.0.1700.4", "os": "win", "channel": "dev"}, {"timestamp": "2013-10-31 19:34:38.528860", "version": "32.0.1687.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-10-29 20:22:29.668330", "version": "32.0.1685.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-10-22 19:47:38.530570", "version": "32.0.1678.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-10-17 18:06:15.765170", "version": "32.0.1671.4", "os": "win", "channel": "dev"}, {"timestamp": "2013-10-15 20:08:18.091540", "version": "32.0.1671.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-10-09 14:25:52.405750", "version": "32.0.1664.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-10-04 00:12:16.636970", "version": "32.0.1659.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-10-02 00:52:42.386520", "version": "31.0.1650.8", "os": "win", "channel": "dev"}, {"timestamp": "2013-09-26 14:40:17.476110", "version": "31.0.1650.4", "os": "win", "channel": "dev"}, {"timestamp": "2013-09-25 03:12:18.996600", "version": "31.0.1650.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-09-19 22:59:22.657090", "version": "31.0.1636.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-09-19 01:37:49.821160", "version": "31.0.1632.7", "os": "win", "channel": "dev"}, {"timestamp": "2013-09-12 22:32:48.501310", "version": "31.0.1626.5", "os": "win", "channel": "dev"}, {"timestamp": "2013-09-10 22:35:15.246280", "version": "31.0.1626.1", "os": "win", "channel": "dev"}, {"timestamp": "2013-09-06 02:43:36.410970", "version": "31.0.1622.7", "os": "win", "channel": "dev"}, {"timestamp": "2013-08-28 20:56:45.395210", "version": "31.0.1612.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-08-28 01:32:03.681630", "version": "31.0.1612.1", "os": "win", "channel": "dev"}, {"timestamp": "2013-08-20 13:28:08.161490", "version": "30.0.1599.14", "os": "win", "channel": "dev"}, {"timestamp": "2013-08-15 22:36:45.696890", "version": "30.0.1599.10", "os": "win", "channel": "dev"}, {"timestamp": "2013-08-13 16:11:10.052430", "version": "30.0.1599.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-08-06 18:52:06.791740", "version": "30.0.1588.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-07-30 20:08:35.055580", "version": "30.0.1581.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-07-23 19:29:24.547040", "version": "30.0.1573.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-07-18 23:01:29.276420", "version": "30.0.1568.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-07-16 22:24:11.526890", "version": "30.0.1566.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-07-15 22:00:12.802300", "version": "29.0.1547.22", "os": "win", "channel": "dev"}, {"timestamp": "2013-07-11 21:05:36.722350", "version": "29.0.1547.18", "os": "win", "channel": "dev"}, {"timestamp": "2013-07-08 22:38:42.088720", "version": "29.0.1547.15", "os": "win", "channel": "dev"}, {"timestamp": "2013-06-25 20:46:46.536100", "version": "29.0.1547.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-06-18 22:59:55.045240", "version": "29.0.1541.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-06-12 01:26:30.924470", "version": "29.0.1535.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-06-06 22:41:06.770150", "version": "29.0.1530.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-05-29 17:58:53.665720", "version": "29.0.1521.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-05-24 17:57:59.583870", "version": "29.0.1516.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-05-21 20:39:44.712530", "version": "28.0.1500.20", "os": "win", "channel": "dev"}, {"timestamp": "2013-05-13 19:30:30.489720", "version": "28.0.1500.11", "os": "win", "channel": "dev"}, {"timestamp": "2013-05-09 19:58:41.813520", "version": "28.0.1500.5", "os": "win", "channel": "dev"}, {"timestamp": "2013-05-07 23:38:18.617460", "version": "28.0.1500.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-05-02 23:41:18.903620", "version": "28.0.1496.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-04-30 23:25:13.544170", "version": "28.0.1490.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-04-22 22:59:15.937080", "version": "28.0.1485.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-04-16 00:48:20.258500", "version": "28.0.1478.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-04-09 02:46:07.932850", "version": "28.0.1469.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-04-05 18:19:28.047880", "version": "28.0.1464.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-04-02 17:53:25.145500", "version": "27.0.1453.12", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-29 18:16:49.135440", "version": "27.0.1453.9", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-28 18:59:48.314880", "version": "27.0.1453.6", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-27 01:53:23.549490", "version": "27.0.1453.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-21 21:49:11.673003", "version": "27.0.1448.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-19 00:30:49.325001", "version": "27.0.1444.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-13 17:35:03.840143", "version": "27.0.1438.7", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-06 18:32:27.534513", "version": "27.0.1430.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-05 23:32:37.811235", "version": "27.0.1430.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-03-01 01:11:51.636345", "version": "27.0.1425.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-02-26 22:03:01.937236", "version": "27.0.1423.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-02-22 00:09:52.181335", "version": "26.0.1410.12", "os": "win", "channel": "dev"}, {"timestamp": "2013-02-20 00:15:47.421613", "version": "26.0.1410.10", "os": "win", "channel": "dev"}, {"timestamp": "2013-02-14 20:18:49.043086", "version": "26.0.1410.5", "os": "win", "channel": "dev"}, {"timestamp": "2013-02-13 01:49:23.707966", "version": "26.0.1410.3", "os": "win", "channel": "dev"}, {"timestamp": "2013-02-05 00:43:13.792515", "version": "26.0.1403.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-01-30 21:11:13.672237", "version": "26.0.1397.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-01-17 22:44:44.632486", "version": "26.0.1386.0", "os": "win", "channel": "dev"}, {"timestamp": "2013-01-16 01:48:57.646407", "version": "26.0.1384.2", "os": "win", "channel": "dev"}, {"timestamp": "2013-01-10 23:07:12.859265", "version": "25.0.1364.29", "os": "win", "channel": "dev"}, {"timestamp": "2013-01-08 00:05:42.205853", "version": "25.0.1364.26", "os": "win", "channel": "dev"}, {"timestamp": "2012-12-20 22:09:26.410205", "version": "25.0.1364.5", "os": "win", "channel": "dev"}, {"timestamp": "2012-12-19 02:42:39.891241", "version": "25.0.1364.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-12-14 02:37:09.422238", "version": "25.0.1359.3", "os": "win", "channel": "dev"}, {"timestamp": "2012-12-10 22:13:57.477126", "version": "25.0.1354.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-12-07 00:16:59.533106", "version": "25.0.1349.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-11-28 23:28:57.174249", "version": "25.0.1337.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-11-13 00:52:33.199907", "version": "25.0.1323.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-11-06 19:47:19.447099", "version": "24.0.1312.5", "os": "win", "channel": "dev"}, {"timestamp": "2012-11-01 19:24:01.894562", "version": "24.0.1312.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-10-31 00:02:11.721761", "version": "24.0.1312.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-10-24 19:15:16.032706", "version": "24.0.1305.3", "os": "win", "channel": "dev"}, {"timestamp": "2012-10-16 21:19:13.934724", "version": "24.0.1297.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-10-09 21:43:57.388586", "version": "24.0.1290.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-10-03 00:26:19.358696", "version": "24.0.1284.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-09-27 18:02:10.613799", "version": "23.0.1271.10", "os": "win", "channel": "dev"}, {"timestamp": "2012-09-25 21:21:48.349277", "version": "23.0.1271.6", "os": "win", "channel": "dev"}, {"timestamp": "2012-09-20 19:44:35.978350", "version": "23.0.1271.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-09-18 22:20:03.359033", "version": "23.0.1270.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-09-11 00:20:53.369165", "version": "23.0.1262.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-09-04 22:21:13.241591", "version": "23.0.1255.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-08-31 18:17:38.950756", "version": "23.0.1251.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-08-28 00:25:54.509043", "version": "23.0.1246.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-08-23 23:54:55.732357", "version": "23.0.1243.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-08-21 23:18:47.854439", "version": "22.0.1229.12", "os": "win", "channel": "dev"}, {"timestamp": "2012-08-16 23:21:39.455435", "version": "22.0.1229.8", "os": "win", "channel": "dev"}, {"timestamp": "2012-08-14 23:47:34.092347", "version": "22.0.1229.6", "os": "win", "channel": "dev"}, {"timestamp": "2012-08-09 20:31:55.344300", "version": "22.0.1229.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-08-08 00:27:15.391271", "version": "22.0.1229.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-07-30 23:47:10.355043", "version": "22.0.1221.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-07-25 18:00:05.742833", "version": "22.0.1215.3", "os": "win", "channel": "dev"}, {"timestamp": "2012-07-25 17:44:05.066159", "version": "22.0.1207.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-07-23 23:56:27.699693", "version": "22.0.1215.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-07-10 00:02:30.417237", "version": "22.0.1201.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-06-29 02:43:02.275037", "version": "21.0.1180.15", "os": "win", "channel": "dev"}, {"timestamp": "2012-06-26 02:18:28.893003", "version": "21.0.1180.11", "os": "win", "channel": "dev"}, {"timestamp": "2012-06-22 00:00:03.686656", "version": "21.0.1180.4", "os": "win", "channel": "dev"}, {"timestamp": "2012-06-19 23:29:49.503880", "version": "21.0.1180.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-06-11 23:44:12.497616", "version": "21.0.1171.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-06-05 00:47:31.436958", "version": "21.0.1163.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-05-30 00:52:58.227015", "version": "21.0.1155.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-05-22 00:44:35.275578", "version": "21.0.1145.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-05-17 23:34:11.088684", "version": "20.0.1132.11", "os": "win", "channel": "dev"}, {"timestamp": "2012-05-16 00:34:12.839658", "version": "20.0.1132.8", "os": "win", "channel": "dev"}, {"timestamp": "2012-05-11 20:57:40.039867", "version": "20.0.1132.3", "os": "win", "channel": "dev"}, {"timestamp": "2012-05-09 01:08:05.596451", "version": "20.0.1130.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-05-04 01:43:59.271464", "version": "20.0.1123.4", "os": "win", "channel": "dev"}, {"timestamp": "2012-05-02 06:26:54.601413", "version": "20.0.1123.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-04-25 00:17:05.365861", "version": "20.0.1115.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-04-19 19:17:27.858190", "version": "20.0.1105.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-04-18 00:32:32.752429", "version": "20.0.1105.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-04-10 22:39:50.903181", "version": "20.0.1096.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-04-06 00:24:37.313690", "version": "19.0.1084.15", "os": "win", "channel": "dev"}, {"timestamp": "2012-04-03 22:45:44.162647", "version": "19.0.1084.9", "os": "win", "channel": "dev"}, {"timestamp": "2012-03-29 23:53:38.806929", "version": "19.0.1084.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-03-28 20:19:37.578118", "version": "19.0.1081.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-03-23 22:11:16.748494", "version": "19.0.1077.3", "os": "win", "channel": "dev"}, {"timestamp": "2012-03-15 15:39:24.417446", "version": "19.0.1068.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-03-13 23:14:16.841667", "version": "19.0.1068.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-03-07 02:29:03.087025", "version": "19.0.1061.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-02-29 00:35:00.361479", "version": "19.0.1055.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-02-24 00:15:03.802307", "version": "19.0.1049.3", "os": "win", "channel": "dev"}, {"timestamp": "2012-02-15 01:26:52.693277", "version": "19.0.1041.0", "os": "win", "channel": "dev"}, {"timestamp": "2012-02-10 22:28:43.002042", "version": "19.0.1036.7", "os": "win", "channel": "dev"}, {"timestamp": "2012-02-08 02:11:36.342233", "version": "18.0.1025.7", "os": "win", "channel": "dev"}, {"timestamp": "2012-02-03 02:05:01.992245", "version": "18.0.1025.3", "os": "win", "channel": "dev"}, {"timestamp": "2012-02-01 00:50:43.302643", "version": "18.0.1025.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-01-25 01:52:32.852157", "version": "18.0.1017.2", "os": "win", "channel": "dev"}, {"timestamp": "2012-01-18 02:18:21.471775", "version": "18.0.1010.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-01-11 04:43:37.274858", "version": "18.0.1003.1", "os": "win", "channel": "dev"}, {"timestamp": "2012-01-05 00:02:51.015231", "version": "17.0.963.26", "os": "win", "channel": "dev"}, {"timestamp": "2011-12-16 02:56:07.709380", "version": "17.0.963.12", "os": "win", "channel": "dev"}, {"timestamp": "2011-12-13 00:20:16.966016", "version": "17.0.963.6", "os": "win", "channel": "dev"}, {"timestamp": "2011-12-09 00:45:52.579935", "version": "17.0.963.2", "os": "win", "channel": "dev"}, {"timestamp": "2011-12-06 23:45:11.121224", "version": "17.0.963.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-11-18 00:13:13.547951", "version": "17.0.942.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-11-15 00:36:36.682142", "version": "17.0.938.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-11-08 00:01:54.107311", "version": "17.0.932.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-11-03 23:38:13.871933", "version": "17.0.928.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-11-01 23:05:53.469821", "version": "16.0.912.21", "os": "win", "channel": "dev"}, {"timestamp": "2011-10-27 23:08:29.273571", "version": "16.0.912.15", "os": "win", "channel": "dev"}, {"timestamp": "2011-10-26 00:33:00.645906", "version": "16.0.912.12", "os": "win", "channel": "dev"}, {"timestamp": "2011-10-20 23:31:54.410987", "version": "16.0.912.4", "os": "win", "channel": "dev"}, {"timestamp": "2011-10-18 23:21:28.765917", "version": "16.0.912.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-10-10 23:51:01.411375", "version": "16.0.904.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-10-04 00:00:02.368667", "version": "16.0.899.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-09-27 00:01:19.501162", "version": "16.0.891.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-09-23 00:00:04.600297", "version": "16.0.889.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-09-21 00:29:45.279457", "version": "15.0.874.21", "os": "win", "channel": "dev"}, {"timestamp": "2011-09-15 23:35:15.396772", "version": "15.0.874.15", "os": "win", "channel": "dev"}, {"timestamp": "2011-09-13 23:00:02.220450", "version": "15.0.874.12", "os": "win", "channel": "dev"}, {"timestamp": "2011-09-09 01:15:01.462271", "version": "15.0.874.5", "os": "win", "channel": "dev"}, {"timestamp": "2011-09-07 23:28:26.943667", "version": "15.0.874.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-08-30 00:53:44.167535", "version": "15.0.865.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-08-24 23:45:01.557603", "version": "15.0.861.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-08-17 17:50:57.766559", "version": "15.0.854.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-08-16 23:32:55.862838", "version": "15.0.849.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-08-10 23:45:12.449065", "version": "14.0.835.35", "os": "win", "channel": "dev"}, {"timestamp": "2011-08-08 23:39:27.586298", "version": "14.0.835.29", "os": "win", "channel": "dev"}, {"timestamp": "2011-08-05 00:20:22.656768", "version": "14.0.835.18", "os": "win", "channel": "dev"}, {"timestamp": "2011-08-01 23:30:39.166312", "version": "14.0.835.15", "os": "win", "channel": "dev"}, {"timestamp": "2011-07-29 00:07:02.915730", "version": "14.0.835.8", "os": "win", "channel": "dev"}, {"timestamp": "2011-07-27 00:29:22.495411", "version": "14.0.835.2", "os": "win", "channel": "dev"}, {"timestamp": "2011-07-19 00:18:39.510135", "version": "14.0.825.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-07-12 00:19:19.815197", "version": "14.0.814.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-28 00:25:51.373550", "version": "14.0.803.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-20 23:31:21.882224", "version": "14.0.797.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-16 23:24:40.782210", "version": "14.0.794.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-16 00:50:32.462022", "version": "13.0.782.24", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-14 01:22:42.462647", "version": "13.0.782.20", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-10 00:54:02.498892", "version": "13.0.782.14", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-08 21:28:42.336949", "version": "13.0.782.13", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-08 00:42:42.523798", "version": "13.0.782.11", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-06 05:45:01.690681", "version": "13.0.782.10", "os": "win", "channel": "dev"}, {"timestamp": "2011-06-02 00:18:23.923209", "version": "13.0.782.1", "os": "win", "channel": "dev"}, {"timestamp": "2011-05-24 00:23:25.417993", "version": "13.0.772.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-05-17 21:36:01.649909", "version": "13.0.767.1", "os": "win", "channel": "dev"}, {"timestamp": "2011-05-12 21:30:02.816615", "version": "13.0.761.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-05-07 00:26:42.381502", "version": "12.0.742.30", "os": "win", "channel": "dev"}, {"timestamp": "2011-05-06 00:50:01.184756", "version": "12.0.742.21", "os": "win", "channel": "dev"}, {"timestamp": "2011-05-03 01:32:45.837483", "version": "12.0.742.16", "os": "win", "channel": "dev"}, {"timestamp": "2011-04-29 00:47:01.978221", "version": "12.0.742.12", "os": "win", "channel": "dev"}, {"timestamp": "2011-04-26 00:48:15.791589", "version": "12.0.742.9", "os": "win", "channel": "dev"}, {"timestamp": "2011-04-22 21:52:40.866321", "version": "12.0.742.5", "os": "win", "channel": "dev"}, {"timestamp": "2011-04-21 01:07:21.274640", "version": "12.0.742.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-04-13 00:18:03.352933", "version": "12.0.733.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-04-06 01:25:31.730658", "version": "12.0.725.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-24 23:56:50.353141", "version": "12.0.712.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-21 23:12:14.929546", "version": "11.0.696.16", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-17 23:35:19.195017", "version": "11.0.696.14", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-16 00:37:36.670682", "version": "11.0.696.12", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-11 02:25:22.766989", "version": "11.0.696.3", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-09 02:42:49.254367", "version": "11.0.696.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-03 22:40:08.703552", "version": "11.0.686.3", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-01 20:35:16.946853", "version": "11.0.686.1", "os": "win", "channel": "dev"}, {"timestamp": "2011-03-01 02:36:12.261887", "version": "11.0.686.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-02-17 23:15:13.205432", "version": "11.0.672.2", "os": "win", "channel": "dev"}, {"timestamp": "2011-02-16 23:02:09.686153", "version": "10.0.648.82", "os": "win", "channel": "dev"}, {"timestamp": "2011-02-09 01:08:19.428149", "version": "10.0.648.45", "os": "win", "channel": "dev"}, {"timestamp": "2011-02-04 01:31:33.914043", "version": "10.0.648.18", "os": "win", "channel": "dev"}, {"timestamp": "2011-02-01 04:02:58.551081", "version": "10.0.648.11", "os": "win", "channel": "dev"}, {"timestamp": "2011-01-27 01:58:03.833503", "version": "10.0.648.6", "os": "win", "channel": "dev"}, {"timestamp": "2011-01-20 20:34:10.485114", "version": "10.0.642.2", "os": "win", "channel": "dev"}, {"timestamp": "2011-01-11 20:29:22.440018", "version": "10.0.634.0", "os": "win", "channel": "dev"}, {"timestamp": "2011-01-06 06:16:24.266016", "version": "10.0.628.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-12-20 19:43:27.003393", "version": "10.0.612.3", "os": "win", "channel": "dev"}, {"timestamp": "2010-12-16 23:09:02.613656", "version": "10.0.612.1", "os": "win", "channel": "dev"}, {"timestamp": "2010-12-14 01:51:30.028630", "version": "9.0.597.19", "os": "win", "channel": "dev"}, {"timestamp": "2010-12-10 17:40:35.218863", "version": "9.0.597.16", "os": "win", "channel": "dev"}, {"timestamp": "2010-12-10 02:13:57.432350", "version": "9.0.597.15", "os": "win", "channel": "dev"}, {"timestamp": "2010-12-07 02:02:57.524983", "version": "9.0.597.10", "os": "win", "channel": "dev"}, {"timestamp": "2010-12-01 22:58:13.664530", "version": "9.0.597.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-11-19 01:08:11.505390", "version": "9.0.587.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-11-10 00:46:46.659929", "version": "9.0.576.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-11-05 01:20:03.009405", "version": "9.0.570.1", "os": "win", "channel": "dev"}, {"timestamp": "2010-11-03 01:02:56.557176", "version": "9.0.570.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-10-30 01:11:40.679688", "version": "8.0.552.23", "os": "win", "channel": "dev"}, {"timestamp": "2010-10-27 01:07:18.524939", "version": "8.0.552.18", "os": "win", "channel": "dev"}, {"timestamp": "2010-10-21 23:21:07.362399", "version": "8.0.552.11", "os": "win", "channel": "dev"}, {"timestamp": "2010-10-19 03:29:35.380392", "version": "8.0.552.5", "os": "win", "channel": "dev"}, {"timestamp": "2010-10-13 00:03:39.843245", "version": "8.0.552.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-10-06 22:51:53.761849", "version": "7.0.544.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-09-30 20:34:16.449689", "version": "7.0.536.2", "os": "win", "channel": "dev"}, {"timestamp": "2010-09-28 22:49:52.102607", "version": "7.0.517.24", "os": "win", "channel": "dev"}, {"timestamp": "2010-09-24 23:15:18.317542", "version": "7.0.517.17", "os": "win", "channel": "dev"}, {"timestamp": "2010-09-17 01:02:24.580776", "version": "7.0.517.8", "os": "win", "channel": "dev"}, {"timestamp": "2010-09-13 21:15:08.408742", "version": "7.0.517.5", "os": "win", "channel": "dev"}, {"timestamp": "2010-09-09 01:03:59.649612", "version": "7.0.517.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-08-26 00:05:03.192544", "version": "7.0.503.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-08-17 22:28:45.281781", "version": "6.0.495.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-08-13 14:23:58.981512", "version": "6.0.490.1", "os": "win", "channel": "dev"}, {"timestamp": "2010-08-06 22:53:12.693314", "version": "6.0.472.25", "os": "win", "channel": "dev"}, {"timestamp": "2010-08-05 00:22:02.989672", "version": "6.0.472.22", "os": "win", "channel": "dev"}, {"timestamp": "2010-07-30 23:14:34.906503", "version": "6.0.472.14", "os": "win", "channel": "dev"}, {"timestamp": "2010-07-28 23:49:30.339032", "version": "6.0.472.11", "os": "win", "channel": "dev"}, {"timestamp": "2010-07-22 00:09:53.631080", "version": "6.0.472.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-07-15 22:58:14.785376", "version": "6.0.466.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-07-09 14:18:49.147870", "version": "6.0.458.1", "os": "win", "channel": "dev"}, {"timestamp": "2010-07-02 23:12:13.572119", "version": "6.0.453.1", "os": "win", "channel": "dev"}, {"timestamp": "2010-06-25 01:37:06.165522", "version": "6.0.447.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-06-18 19:49:04.312351", "version": "6.0.437.3", "os": "win", "channel": "dev"}, {"timestamp": "2010-06-17 23:02:50.189680", "version": "6.0.427.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-06-17 18:31:39.466049", "version": "6.0.437.1", "os": "win", "channel": "dev"}, {"timestamp": "2010-06-03 18:37:41.545861", "version": "6.0.422.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-05-20 21:03:10.341977", "version": "6.0.408.1", "os": "win", "channel": "dev"}, {"timestamp": "2010-05-14 03:19:25.209091", "version": "6.0.401.1", "os": "win", "channel": "dev"}, {"timestamp": "2010-05-07 01:36:38.203980", "version": "5.0.396.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-05-04 01:31:54.330134", "version": "5.0.375.29", "os": "win", "channel": "dev"}, {"timestamp": "2010-04-30 22:08:37.591885", "version": "5.0.375.28", "os": "win", "channel": "dev"}, {"timestamp": "2010-04-27 20:56:13.817069", "version": "5.0.375.23", "os": "win", "channel": "dev"}, {"timestamp": "2010-04-23 00:30:19.613747", "version": "5.0.375.17", "os": "win", "channel": "dev"}, {"timestamp": "2010-04-17 01:18:06.570807", "version": "5.0.375.9", "os": "win", "channel": "dev"}, {"timestamp": "2010-04-14 23:39:10.591308", "version": "5.0.375.7", "os": "win", "channel": "dev"}, {"timestamp": "2010-04-13 01:11:37.789960", "version": "5.0.375.3", "os": "win", "channel": "dev"}, {"timestamp": "2010-04-09 01:12:39.670401", "version": "5.0.371.0", "os": "win", "channel": "dev"}, {"timestamp": "2010-04-02 18:16:57.406165", "version": "5.0.366.2", "os": "win", "channel": "dev"}] \ No newline at end of file
diff --git a/chromium/chrome/common/extensions/docs/server2/test_data/file_system/stat_result.json b/chromium/chrome/common/extensions/docs/server2/test_data/file_system/stat_result.json
index a6c93703063..3e85bb2e714 100644
--- a/chromium/chrome/common/extensions/docs/server2/test_data/file_system/stat_result.json
+++ b/chromium/chrome/common/extensions/docs/server2/test_data/file_system/stat_result.json
@@ -52,7 +52,6 @@
"top_sites.json": "136747",
"page_actions.json": "136747",
"page_action.json": "137065",
- "experimental_discovery.idl": "149243",
"history.json": "129086",
"bookmarks.json": "149307",
"permissions.json": "124878",
diff --git a/chromium/chrome/common/extensions/docs/server2/test_data/github_file_system/expected_list.json b/chromium/chrome/common/extensions/docs/server2/test_data/github_file_system/expected_list.json
index 78ef29670b4..eee9d7f4f26 100644
--- a/chromium/chrome/common/extensions/docs/server2/test_data/github_file_system/expected_list.json
+++ b/chromium/chrome/common/extensions/docs/server2/test_data/github_file_system/expected_list.json
@@ -1,5 +1,5 @@
{
- "/": [
+ "": [
".gitignore",
"README.md",
"analytics/",
diff --git a/chromium/chrome/common/extensions/docs/server2/test_data/test_json/fake_data_source.json b/chromium/chrome/common/extensions/docs/server2/test_data/test_json/fake_data_source.json
deleted file mode 100644
index 49a4b1ce5a5..00000000000
--- a/chromium/chrome/common/extensions/docs/server2/test_data/test_json/fake_data_source.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "baz": {
- "events": [
- { "name": "baz_e1" },
- { "name": "baz_e2" },
- { "name": "baz_e3" }
- ],
- "functions": [
- { "name": "baz_f1" },
- { "name": "baz_f2" },
- { "name": "baz_f3" }
- ],
- "types": [
- { "name": "baz_t1" },
- { "name": "baz_t2" },
- { "name": "baz_t3" }
- ],
- "properties": [
- { "name": "baz_p1" },
- { "name": "baz_p2" },
- { "name": "baz_p3" }
- ]
- },
- "bar.bon": {
- "events": [
- { "name": "bar_bon_e1" },
- { "name": "bar_bon_e2" },
- { "name": "bar_bon_e3" }
- ],
- "functions": [
- { "name": "bar_bon_f1" },
- { "name": "bar_bon_f2" },
- { "name": "bar_bon_f3" }
- ],
- "types": [
- { "name": "bar_bon_t1" },
- { "name": "bar_bon_t2" },
- { "name": "bar_bon_t3" }
- ],
- "properties": [
- { "name": "bar_bon_p1" },
- { "name": "bar_bon_p2" },
- { "name": "bar_bon_p3" }
- ]
- },
- "bar": {
- "events": [
- { "name": "bar_e1" },
- { "name": "bar_e2" },
- { "name": "bar_e3" }
- ],
- "functions": [
- { "name": "bar_f1" },
- { "name": "bar_f2" },
- { "name": "bar_f3" }
- ],
- "types": [
- {
- "name": "bar_t1",
- "properties": [
- { "name": "bar_t1_p1" }
- ]
- },
- {
- "name": "bar_t2",
- "properties": [
- { "name": "bar_t2_p1" }
- ]
- },
- { "name": "bar_t3" },
- { "name": "bon" }
- ],
- "properties": [
- { "name": "bar_p1" },
- { "name": "bar_p2" },
- {
- "name": "bar_p3",
- "link": { "name": "bar_t1" }
- }
- ]
- },
- "foo": {
- "events": [
- { "name": "foo_e1" },
- { "name": "foo_e2" },
- { "name": "foo_e3" }
- ],
- "functions": [
- { "name": "foo_f1" },
- { "name": "foo_f2" },
- { "name": "foo_f3" }
- ],
- "types": [
- { "name": "foo_t1" },
- { "name": "foo_t2" },
- {
- "name": "foo_t3",
- "events": [
- { "name": "foo_t3_e1" }
- ]
- }
- ],
- "properties": [
- {
- "name": "foo_p1",
- "link": { "name": "foo_t3" }
- },
- { "name": "foo_p2" },
- { "name": "foo_p3" }
- ]
- }
-}
diff --git a/chromium/chrome/common/extensions/docs/templates/json/apps_sidenav.json b/chromium/chrome/common/extensions/docs/templates/json/apps_sidenav.json
index 0d6d1cdecbd..0ee5ac7896d 100644
--- a/chromium/chrome/common/extensions/docs/templates/json/apps_sidenav.json
+++ b/chromium/chrome/common/extensions/docs/templates/json/apps_sidenav.json
@@ -4,7 +4,7 @@
"items": [
{
"title": "What Are Chrome Apps?",
- "href": "/apps/about_apps.html"
+ "href": "/apps/about_apps"
}
]
},
@@ -13,7 +13,7 @@
"items": [
{
"title": "Create Your First App",
- "href": "/apps/first_app.html"
+ "href": "/apps/first_app"
},
{
"title": "Tutorials",
@@ -25,39 +25,39 @@
"items": [
{
"title": "About this Codelab",
- "href": "/apps/app_codelab.html"
+ "href": "/apps/app_codelab"
},
{
"title": "1 - Set Up Development Environment",
- "href": "/apps/app_codelab1_setup.html"
+ "href": "/apps/app_codelab1_setup"
},
{
"title": "2 - Create Basic App",
- "href": "/apps/app_codelab2_basic.html"
+ "href": "/apps/app_codelab2_basic"
},
{
"title": "3 - Create MVC",
- "href": "/apps/app_codelab3_mvc.html"
+ "href": "/apps/app_codelab3_mvc"
},
{
"title": "4 - Save and Fetch Data",
- "href": "/apps/app_codelab5_data.html"
+ "href": "/apps/app_codelab5_data"
},
{
"title": "5 - Manage App Lifecycle",
- "href": "/apps/app_codelab6_lifecycle.html"
+ "href": "/apps/app_codelab6_lifecycle"
},
{
"title": "6 - Access User's Data",
- "href": "/apps/app_codelab7_useridentification.html"
+ "href": "/apps/app_codelab7_useridentification"
},
{
"title": "7 - Access Web Resources",
- "href": "/apps/app_codelab8_webresources.html"
+ "href": "/apps/app_codelab8_webresources"
},
{
"title": "8 - Publish App",
- "href": "/apps/app_codelab_10_publishing.html"
+ "href": "/apps/app_codelab_10_publishing"
}
]
},
@@ -67,15 +67,19 @@
"items": [
{
"title": "About MVC Architecture",
- "href": "/apps/app_frameworks.html"
+ "href": "/apps/app_frameworks"
},
{
"title": "Build Apps with AngularJS",
- "href": "/apps/angular_framework.html"
+ "href": "/apps/angular_framework"
},
{
"title": "Build Apps with Sencha Ext JS",
- "href": "/apps/sencha_framework.html"
+ "href": "/apps/sencha_framework"
+ },
+ {
+ "title": "Game Engines",
+ "href": "/apps/game_engines"
}
]
}
@@ -91,19 +95,19 @@
"items": [
{
"title": "App Architecture",
- "href": "/apps/app_architecture.html"
+ "href": "/apps/app_architecture"
},
{
"title": "App Lifecycle",
- "href": "/apps/app_lifecycle.html"
+ "href": "/apps/app_lifecycle"
},
{
"title": "Offline First",
- "href": "/apps/offline_apps.html"
+ "href": "/apps/offline_apps"
},
{
"title": "External Content",
- "href": "/apps/app_external.html"
+ "href": "/apps/app_external"
}
]
},
@@ -113,7 +117,7 @@
"items": [
{
"title": "Content Security Policy",
- "href": "/apps/contentSecurityPolicy.html"
+ "href": "/apps/contentSecurityPolicy"
}
]
},
@@ -127,19 +131,19 @@
"items": [
{
"title": "About Cloud Messaging",
- "href": "/apps/cloudMessaging.html"
+ "href": "/apps/cloudMessaging"
},
{
"title": "Client Reference",
- "href": "/apps/pushMessaging.html"
+ "href": "/apps/pushMessaging"
},
{
"title": "Service Reference",
- "href": "/apps/gcm_server.html"
+ "href": "/apps/gcm_server"
},
{
"title": "Terms of Service",
- "href": "/apps/gcm_tos.html"
+ "href": "/apps/gcm_tos"
}
]
},
@@ -149,13 +153,13 @@
"items": [
{
"title": "chrome.storage",
- "href": "/apps/storage.html"
+ "href": "/apps/storage"
}
]
},
{
"title": "User Authentication",
- "href": "/apps/app_identity.html"
+ "href": "/apps/app_identity"
}
]
},
@@ -165,7 +169,7 @@
"items": [
{
"title": "Storage APIs",
- "href": "/apps/app_storage.html"
+ "href": "/apps/app_storage"
}
]
},
@@ -175,15 +179,19 @@
"items": [
{
"title": "USB",
- "href": "/apps/app_usb.html"
+ "href": "/apps/app_usb"
},
{
"title": "Serial",
- "href": "/apps/app_serial.html"
+ "href": "/apps/app_serial"
},
{
"title": "Network Communications",
- "href": "/apps/app_network.html"
+ "href": "/apps/app_network"
+ },
+ {
+ "title": "Bluetooth",
+ "href": "/apps/app_bluetooth"
}
]
},
@@ -193,7 +201,7 @@
"items": [
{
"title": "Rich Notifications",
- "href": "/apps/desktop_notifications.html"
+ "href": "/apps/desktop_notifications"
}
]
}
@@ -206,7 +214,7 @@
"items": [
{
"title": "Publish Your App",
- "href": "/apps/publish_app.html"
+ "href": "/apps/publish_app"
},
{
"title": "Monetize Your App",
@@ -214,13 +222,13 @@
"items": [
{
"title": "Google Wallet for Digital Goods",
- "href": "/apps/google_wallet.html"
+ "href": "/apps/google_wallet"
}
]
},
{
"title": "Analytics",
- "href": "/apps/analytics.html"
+ "href": "/apps/analytics"
}
]
},
@@ -229,23 +237,23 @@
"items": [
{
"title": "Chrome Platform APIs",
- "href": "/apps/api_index.html"
+ "href": "/apps/api_index"
},
{
"title": "Webview Tag",
- "href": "/apps/tags/webview.html"
+ "href": "/apps/tags/webview"
},
{
"title": "Web APIs",
- "href": "/apps/api_other.html"
+ "href": "/apps/api_other"
},
{
"title": "Manifest File Format",
- "href": "/apps/manifest.html"
+ "href": "/apps/manifest"
},
{
"title": "Disabled Web Features",
- "href": "/apps/app_deprecated.html"
+ "href": "/apps/app_deprecated"
}
]
},
@@ -254,7 +262,7 @@
"items": [
{
"title": "Sample Apps",
- "href": "/apps/samples.html"
+ "href": "/apps/samples"
}
]
},
@@ -263,7 +271,7 @@
"items": [
{
"title": "FAQ",
- "href": "/apps/faq.html"
+ "href": "/apps/faq"
},
{
"title": "Google Groups",
diff --git a/chromium/chrome/common/extensions/docs/templates/json/chrome_sidenav.json b/chromium/chrome/common/extensions/docs/templates/json/chrome_sidenav.json
index bc7b1e31d8c..eb933290824 100644
--- a/chromium/chrome/common/extensions/docs/templates/json/chrome_sidenav.json
+++ b/chromium/chrome/common/extensions/docs/templates/json/chrome_sidenav.json
@@ -1,225 +1,184 @@
[
{
- "title": "DEVTOOLS",
+ "title": "Devtools",
"items": [
{
- "title": "OVERVIEW",
+ "title": "Learn Basics",
"items": [
{
- "title": "Getting Started",
- "items": [
- {
- "title": "What Are Chrome DevTools?",
- "href": "/devtools/index.html"
- },
- {
- "title": "Authoring & Development Workflow",
- "href": "/devtools/index.html"
- },
- {
- "title": "Using the Console",
- "href": "/devtools/index.html"
- },
- {
- "title": "Tips & Tricks",
- "href": "/devtools/index.html"
- }
- ]
+ "title": "Overview",
+ "href": "/devtools/index"
},
{
- "title": "Inspecting & Tweaking",
- "items": [
- {
- "title": "Editing Styles & DOM",
- "href": "/devtools/index.html"
- },
- {
- "title": "Editing Styles",
- "href": "/devtools/index.html"
- },
- {
- "title": "Working with CSS Preprocessors",
- "href": "/devtools/index.html"
- },
- {
- "title": "Managing Application Storage",
- "href": "/devtools/index.html"
- }
- ]
+ "title": "Development Workflow",
+ "href": "/devtools/docs/authoring-development-workflow"
},
{
- "title": "Network Performance & Profiling",
- "items": [
- {
- "title": "Evaluating Network Performance",
- "href": "/devtools/index.html"
- },
- {
- "title": "Performance Profiling with Timeline",
- "href": "/devtools/index.html"
- },
- {
- "title": "Demo: Finding Forced Synchronoush Layouts",
- "href": "/devtools/index.html"
- }
- ]
+ "title": "Using the Console",
+ "href": "/devtools/docs/console"
},
{
- "title": "Working with Mobile",
- "items": [
- {
- "title": "Mobile Emulation",
- "href": "/devtools/index.html"
- },
- {
- "title": "Remote Debugging on Android",
- "href": "/devtools/index.html"
- },
- {
- "title": "Remote Debugging Protocol",
- "href": "/devtools/index.html"
- }
- ]
+ "title": "Tips & Tricks",
+ "href": "/devtools/docs/tips-and-tricks"
},
{
"title": "Additional Resources",
+ "href": "/devtools/docs/videos",
"items": [
{
- "title": "Creating Clean Testing Environment",
- "href": "/devtools/index.html"
- },
- {
"title": "Videos",
- "href": "/devtools/index.html"
+ "href": "/devtools/docs/videos"
},
{
- "title": "Blogposts",
- "href": "/devtools/index.html"
+ "title": "Blog Posts",
+ "href": "/devtools/docs/blog-posts"
},
{
"title": "Mailing List",
- "href": "/devtools/index.html"
+ "href": "https://groups.google.com/forum/?fromgroups#!forum/google-chrome-developer-tools"
},
{
"title": "Contributing to DevTools",
- "href": "/devtools/index.html"
+ "href": "/devtools/docs/contributing"
}
]
}
]
},
{
- "title": "WORKING WITH JAVASCRIPT",
+ "title": "Use Tools",
"items": [
{
- "title": "Debugging & Profiling",
+ "title": "Inspecting & Tweaking",
+ "href": "/devtools/docs/dom-and-styles",
"items": [
{
- "title": "Debugging JavaScript",
- "href": "/devtools/index.html"
+ "title": "Editing Styles and the DOM",
+ "href": "/devtools/docs/dom-and-styles"
},
{
- "title": "Profiling JavaScript Performance",
- "href": "/devtools/index.html"
+ "title": "Working with CSS Preprocessors",
+ "href": "/devtools/docs/css-preprocessors"
},
{
- "title": "JavaScript Memory Profiling",
- "href": "/devtools/index.html"
+ "title": "Managing Application Storage",
+ "href": "/devtools/docs/resource-panel"
}
]
},
- {
- "title": "Heap Profiler Demos",
- "items": [
- {
- "title": "Gathering Scattered Objects",
- "href": "/devtools/index.html"
- },
- {
- "title": "Verifying Action Cleanness",
- "href": "/devtools/index.html"
- },
- {
- "title": "Exploring the Heap Contents",
- "href": "/devtools/index.html"
- },
- {
- "title": "Uncovering DOM Leaks",
- "href": "/devtools/index.html"
- },
- {
- "title": "Finding Accumulation Points",
- "href": "/devtools/index.html"
- }
- ]
+ {
+ "title": "Debugging JavaScript",
+ "href": "/devtools/docs/javascript-debugging"
+ },
+ {
+ "title": "Mobile Emulation",
+ "href": "/devtools/docs/mobile-emulation"
+ },
+ {
+ "title": "Remote Debugging on Android",
+ "href": "/devtools/docs/remote-debugging"
+ },
+ {
+ "title": "Saving Changes with Workspaces",
+ "href": "/devtools/docs/workspaces"
}
]
},
{
- "title": "INTEGRATING WITH DEVTOOLS",
+ "title": "Performance & Profiling",
"items": [
{
- "title": "DevTools Extensions",
+ "title": "Evaluating Network Performance",
+ "href": "/devtools/docs/network"
+ },
+ {
+ "title": "Using the Timeline",
+ "href": "/devtools/docs/timeline"
+ },
+ {
+ "title": "Timeline Demo: Layout Thrashing",
+ "href": "/devtools/docs/demos/too-much-layout/index"
+ },
+ {
+ "title": "Profiling JavaScript Performance",
+ "href": "/devtools/docs/cpu-profiling"
+ },
+ {
+ "title": "JavaScript Memory Profiling",
+ "href": "/devtools/docs/javascript-memory-profiling",
"items": [
{
- "title": "Sample DevTools Extensions",
- "href": "/devtools/index.html"
+ "title": "JavaScript Memory Profiling",
+ "href": "/devtools/docs/javascript-memory-profiling"
},
{
- "title": "Sample Debugging Protocol Clients",
- "href": "/devtools/index.html"
+ "title": "Demos",
+ "href": "/devtools/docs/heap-profiling-summary"
}
]
}
]
},
{
- "title": "REFERENCE",
+ "title": "Reference",
"items": [
{
- "title": "API",
- "items": [
- {
- "title": "Console API Reference",
- "href": "/devtools/index.html"
- },
- {
- "title": "Command Line API Reference",
- "href": "/devtools/index.html"
- }
- ]
+ "title": "Console API Reference",
+ "href": "/devtools/docs/console-api"
+ },
+ {
+ "title": "Command Line API Reference",
+ "href": "/devtools/docs/commandline-api"
},
{
- "title": "Shortcuts & Settings",
+ "title": "DevTools Extensions API",
+ "href": "/devtools/docs/integrating",
"items": [
{
- "title": "Console API Reference",
- "href": "/devtools/index.html"
+ "title": "Integrating with DevTools",
+ "href": "/devtools/docs/integrating"
+ },
+ {
+ "title": "Sample DevTools Extensions",
+ "href": "/devtools/docs/sample-extensions"
},
{
- "title": "Command Line API Reference",
- "href": "/devtools/index.html"
+ "title": "Sample DevTools Protocol Clients",
+ "href": "/devtools/docs/debugging-clients"
}
]
},
{
+ "title": "Keyboard Shortcuts",
+ "href": "/devtools/docs/shortcuts"
+ },
+ {
+ "title": "Settings",
+ "href": "/devtools/docs/settings"
+ },
+ {
"title": "Remote Debugging Protocol",
+ "href": "/devtools/docs/debugger-protocol",
"items": [
{
+ "title": "Remote Debugging Protocol",
+ "href": "/devtools/docs/debugger-protocol"
+ },
+ {
"title": "Version 1.1",
- "href": "/devtools/index.html"
+ "href": "/devtools/docs/protocol/1.1/index"
},
{
"title": "Version 1.0",
- "href": "/devtools/index.html"
+ "href": "/devtools/docs/protocol/1.0/index"
},
{
"title": "Version .1",
- "href": "/devtools/index.html"
+ "href": "/devtools/docs/protocol/0.1/index"
},
{
"title": "Tip-of-tree",
- "href": "/devtools/index.html"
+ "href": "/devtools/docs/protocol/tot/index"
}
]
}
@@ -228,125 +187,106 @@
]
},
{
- "title": "MULTIDEVICE",
+ "title": "Multi-device",
"items": [
{
- "title": "OVERVIEW",
+ "title": "Getting Started",
"items": [
{
- "title": "Getting Started",
- "items": [
- {
- "title": "Develop Apps for Chrome Mobile Browsers",
- "href": "/multidevice/index.html"
- },
- {
- "title": "Data Compression Proxy",
- "href": "/multidevice/index.html"
- },
- {
- "title": "User Agents",
- "href": "/multidevice/index.html"
- },
- {
- "title": "Develop Apps for Chrome Mobile Browsers",
- "href": "/multidevice/index.html"
- }
- ]
+ "title": "Chrome for a Multi-Device World",
+ "href": "/multidevice/index"
},
{
- "title": "Chrome for Android",
- "items": [
- {
- "title": "Overview",
- "href": "/multidevice/index.html"
- },
- {
- "title": "Android Intents with Chrome",
- "href": "/multidevice/index.html"
- },
- {
- "title": "Add to Hoomescreen",
- "href": "/multidevice/index.html"
- }
- ]
+ "title": "Data Compression Proxy",
+ "href": "/multidevice/data-compression"
},
{
- "title": "Chrome for iOS",
- "items": [
- {
- "title": "Overview",
- "href": "/multidevice/index.html"
- },
- {
- "title": "Opening Links in Chrome",
- "href": "/multidevice/index.html"
- }
- ]
+ "title": "User Agents",
+ "href": "/multidevice/user-agent"
},
{
- "title": "Case Studies",
- "items": [
- {
- "title": "Overview",
- "href": "/multidevice/index.html"
- },
- {
- "title": "Pocket",
- "href": "/multidevice/index.html"
- },
- {
- "title": "Feedly",
- "href": "/multidevice/index.html"
- }
- ]
+ "title": "Mobile Emulation",
+ "href": "/devtools/docs/mobile-emulation"
},
{
- "title": "Related DevTools Content",
- "items": [
- {
- "title": "Mobile Emulation",
- "href": "/devtools/index.html"
- },
- {
- "title": "Remote Debugging",
- "href": "/devtools/index.html"
- }
- ]
+ "title": "Remote Debugging",
+ "href": "/devtools/docs/remote-debugging"
+ },
+ {
+ "title": "FAQ",
+ "href": "/multidevice/faq"
}
]
},
- {
- "title": "CHROME WEBVIEW",
+ {
+ "title": "Chrome for Android",
"items": [
{
"title": "Overview",
- "items": [
- {
- "title": "WebView for Android",
- "href": "/multidevice/index.html"
- },
- {
- "title": "Getting Started",
- "href": "/multidevice/index.html"
- }
- ]
+ "href": "/multidevice/android/overview"
+ },
+ {
+ "title": "Android Intents with Chrome",
+ "href": "/multidevice/android/intents"
+ },
+ {
+ "title": "Add to Homescreen",
+ "href": "/multidevice/android/installtohomescreen"
+ }
+ ]
+ },
+ {
+ "title": "Chrome WebView",
+ "items": [
+ {
+ "title": "WebView for Android",
+ "href": "/multidevice/webview/overview"
+ },
+ {
+ "title": "Getting Started",
+ "href": "/multidevice/webview/gettingstarted"
+ },
+ {
+ "title": "Pixel-Perfect UI",
+ "href": "/multidevice/webview/pixelperfect"
+ },
+ {
+ "title": "WebView Workflow",
+ "href": "/multidevice/webview/workflow"
},
{
- "title": "Design & Develop",
+ "title": "Tips & Tricks",
+ "href": "/multidevice/webview/tipsandtricks"
+ }
+ ]
+ },
+ {
+ "title": "Chrome for iOS",
+ "items": [
+ {
+ "title": "Overview",
+ "href": "/multidevice/ios/overview"
+ },
+ {
+ "title": "Opening Links in Chrome",
+ "href": "/multidevice/ios/links"
+ },
+ {
+ "title": "Case Studies",
+ "href": "/multidevice/ios/case-studies",
"items": [
{
- "title": "Pixel-Perfect UI",
- "href": "/multidevice/index.html"
+ "title": "Case Studies",
+ "href": "/multidevice/ios/case-studies"
},
{
- "title": "WebView Workflow",
- "href": "/multidevice/index.html"
+ "title": "Pocket",
+ "href": "/multidevice/ios/pocket"
},
{
- "title": "Tips & Tricks",
- "href": "/multidevice/index.html"
- }
+ "title": "Feedly",
+ "href": "/multidevice/ios/feedly"
+ }
]
}
]
@@ -354,192 +294,208 @@
]
},
{
- "title": "PLATFORM",
+ "title": "Platform",
"items": [
{
- "title": "APPS",
+ "title": "Apps",
"items": [
{
- "title": "Discover",
+ "title": "Learn Basics",
+ "href": "/apps/about_apps",
"items": [
{
- "title": "What are Chrome Apps?",
- "href": "/apps/about_apps.html"
+ "title": "What Are Chrome Apps?",
+ "href": "/apps/about_apps"
},
{
"title": "Create Your First App",
- "href": "/apps/first_app.html"
+ "href": "/apps/first_app"
},
{
"title": "App Architecture",
- "href": "/apps/app_architecture.html"
+ "href": "/apps/app_architecture"
},
{
"title": "App Lifecycle",
- "href": "/apps/app_lifecycle.html"
+ "href": "/apps/app_lifecycle"
},
{
- "title": "Samples",
- "href": "/apps/samples.html"
+ "title": "Content Security Policy",
+ "href": "/apps/contentSecurityPolicy"
}
]
},
{
- "title": "Chrome Apps Codelab",
+ "title": "Learn with Codelab",
+ "href": "/apps/app_codelab1_setup",
"items": [
{
- "title": "Learn with a Codelab",
- "href": "/apps/app_codelab.html"
- },
- {
"title": "1 - Set Up Development Environment",
- "href": "/apps/app_codelab1_setup.html"
+ "href": "/apps/app_codelab1_setup"
},
{
"title": "2 - Create Basic App",
- "href": "/apps/app_codelab2_basic.html"
+ "href": "/apps/app_codelab2_basic"
},
{
"title": "3 - Create MVC",
- "href": "/apps/app_codelab3_mvc.html"
+ "href": "/apps/app_codelab3_mvc"
},
{
"title": "4 - Save & Fetch Data",
- "href": "/apps/app_codelab5_data.html"
+ "href": "/apps/app_codelab5_data"
},
{
"title": "5 - Manage App Lifecycle",
- "href": "/apps/app_codelab6_lifecycle.html"
+ "href": "/apps/app_codelab6_lifecycle"
},
{
"title": "6 - Access User's Data",
- "href": "/apps/app_codelab7_useridentification.html"
+ "href": "/apps/app_codelab7_useridentification"
},
{
"title": "7 - Access Web Resources",
- "href": "/apps/app_codelab8_webresources.html"
+ "href": "/apps/app_codelab8_webresources"
},
{
"title": "8 - Publish App",
- "href": "/apps/app_codelab_10_publishing.html"
+ "href": "/apps/app_codelab_10_publishing"
}
]
},
{
- "title": "Develop",
+ "title": "Samples",
+ "href": "/apps/samples"
+ },
+ {
+ "title": "Develop in the Cloud",
+ "href": "/apps/offline_apps",
"items": [
{
"title": "Offline First",
- "href": "/apps/offline_apps.html"
+ "href": "/apps/offline_apps"
},
{
"title": "Handling External Content",
- "href": "/apps/app_external.html"
+ "href": "/apps/app_external"
},
{
- "title": "Content Security Policy",
- "href": "/apps/contentSecurityPolicy.html"
- },
- {
- "title": "User Authentication",
- "href": "/apps/app_identity.html"
- },
- {
- "title": "Storing Data in the Cloud",
- "href": "/apps/app_storage.html"
+ "title": "Storing Data",
+ "href": "/apps/app_storage"
},
{
"title": "Cloud Messaging",
- "href": "/apps/cloudMessaging.html"
+ "href": "/apps/cloudMessaging"
},
{
- "title": "Rich Notifications",
- "href": "/apps/desktop_notifications.html"
+ "title": "User Authentication",
+ "href": "/apps/app_identity"
}
]
- },
+ },
{
"title": "User Low-Level System Services",
+ "href": "/apps/app_usb",
"items": [
{
"title": "USB",
- "href": "/apps/app_usb.html"
+ "href": "/apps/app_usb"
},
{
"title": "Serial",
- "href": "/apps/app_serial.html"
+ "href": "/apps/app_serial"
},
{
"title": "Network Communications",
- "href": "/apps/app_network.html"
+ "href": "/apps/app_network"
+ },
+ {
+ "title": "Bluetooth",
+ "href": "/apps/app_bluetooth"
}
]
},
{
"title": "MVC Architecture & Frameworks",
+ "href": "/apps/app_frameworks",
"items": [
{
"title": "About MVC Architecture",
- "href": "/apps/app_frameworks.html"
+ "href": "/apps/app_frameworks"
},
{
"title": "Build Apps with AngularJS",
- "href": "/apps/angular_framework.html"
+ "href": "/apps/angular_framework"
},
{
"title": "Build Apps with SenchaJS",
- "href": "/apps/sencha_framework.html"
+ "href": "/apps/sencha_framework"
+ },
+ {
+ "title": "Game Engines",
+ "href": "/apps/game_engines"
}
]
},
- {
- "title": "Distribute",
+ {
+ "title": "Distribute Apps",
+ "href": "/apps/publish_app",
"items": [
{
"title": "Publish Your App",
- "href": "/apps/publish_app.html"
+ "href": "/apps/publish_app"
+ },
+ {
+ "title": "Run Chrome Apps on Mobile",
+ "href": "/apps/chrome_apps_on_mobile"
},
{
"title": "Monetize Your App",
- "href": "/apps/google_wallet.html"
+ "href": "/apps/google_wallet"
+ },
+ {
+ "title": "One-Time Payments",
+ "href": "/webstore/one_time_payments"
},
{
"title": "Analytics",
- "href": "/apps/analytics.html"
+ "href": "/apps/analytics"
}
]
},
{
- "title": "Reference",
+ "title": "Chrome Platform APIs",
+ "href": "/apps/api_index",
"items": [
{
- "title": "Chrome Platform APIs",
- "href": "/apps/api_index.html"
+ "title": "JavaScript APIs",
+ "href": "/apps/api_index"
},
{
- "title": "Webview Tag",
- "href": "/apps/webview.html"
+ "title": "Manifest File Format",
+ "href": "/apps/manifest"
},
{
- "title": "Web APIs",
- "href": "/apps/api_other.html"
+ "title": "Webview Tag",
+ "href": "/apps/tags/webview"
},
{
- "title": "Manifest File Format",
- "href": "/apps/manifest.html"
+ "title": "Web APIs",
+ "href": "/apps/api_other"
},
{
"title": "Disabled Web Features",
- "href": "/apps/app_deprecated.html"
+ "href": "/apps/app_deprecated"
}
]
},
{
"title": "Help",
+ "href": "/apps/faq",
"items": [
{
"title": "FAQ",
- "href": "/apps/faq.html"
+ "href": "/apps/faq"
},
{
"title": "Google Groups",
@@ -554,208 +510,164 @@
]
},
{
- "title": "EXTENSIONS",
+ "title": "Extensions",
"items": [
{
- "title": "Discover",
+ "title": "Learn Basics",
+ "href": "/extensions/overview",
"items": [
{
- "title": "Getting Started",
- "href": "/extensions/getstarted.html"
+ "title": "Overview",
+ "href": "/extensions/overview"
},
{
- "title": "Overview",
- "href": "/extensions/overview.html"
+ "title": "Hosting Changes",
+ "href": "/extensions/hosting_changes"
+ },
+ {
+ "title": "Extension Quality Guidelines FAQ",
+ "href": "/extensions/single_purpose"
},
+
{
"title": "Event Pages",
- "href": "/extensions/event_pages.html"
+ "href": "/extensions/event_pages"
},
{
"title": "Content Scripts",
- "href": "/extensions/content_scripts.html"
+ "href": "/extensions/content_scripts"
},
{
"title": "activeTab Permission",
- "href": "/extensions/activeTab.html"
+ "href": "/extensions/activeTab"
},
{
- "title": "What's New",
- "href": "/extensions/whats_new.html"
- },
- {
- "title": "Samples",
- "href": "/extensions/samples.html"
+ "title": "What's New?",
+ "href": "/extensions/whats_new"
}
]
},
{
- "title": "Browser UI",
- "items": [
- {
- "title": "Browser Actions",
- "href": "/extensions/browserAction.html"
- },
- {
- "title": "Context Menus",
- "href": "/extensions/contextMenus.html"
- },
- {
- "title": "Desktop Notifications",
- "href": "/extensions/desktop_notifications.html"
- },
- {
- "title": "Omnibox",
- "href": "/extensions/omnibox.html"
- },
- {
- "title": "Options Pages",
- "href": "/extensions/options.html"
- },
- {
- "title": "Override Pages",
- "href": "/extensions/override.html"
- },
- {
- "title": "Page Actions",
- "href": "/extensions/pageAction.html"
- }
- ]
+ "title": "Getting Started Tutorial",
+ "href": "/extensions/getstarted"
},
{
- "title": "Browser Interaction",
- "items": [
- {
- "title": "Bookmarks",
- "href": "/extensions/bookmarks.html"
- },
- {
- "title": "Cookies",
- "href": "/extensions/cookies.html"
- },
- {
- "title": "Events",
- "href": "/extensions/events.html"
- },
- {
- "title": "History",
- "href": "/extensions/history.html"
- },
- {
- "title": "Management",
- "href": "/extensions/management.html"
- },
- {
- "title": "Tabs",
- "href": "/extensions/tabs.html"
- },
- {
- "title": "Windows",
- "href": "/extensions/windows.html"
- }
- ]
+ "title": "Samples",
+ "href": "/extensions/samples"
},
{
- "title": "Develop",
+ "title": "Develop Extensions",
+ "href": "/extensions/tut_migration_to_manifest_v2",
"items": [
{
"title": "Accessibility",
- "href": "/extensions/a11y.html"
+ "href": "/extensions/a11y"
},
{
"title": "Content Security Policy",
- "href": "/extensions/contentSecurityPolicy.html"
+ "href": "/extensions/contentSecurityPolicy"
},
{
"title": "Cross-Origin XHR",
- "href": "/extensions/xhr.html"
+ "href": "/extensions/xhr"
},
{
"title": "Debugging",
- "href": "/extensions/tut_debugging.html"
- },
- {
- "title": "Extending DevTools",
- "href": "/extensions/devtools.html"
- },
- {
- "title": "Google Analytics",
- "href": "/extensions/tut_analytics.html"
+ "href": "/extensions/tut_debugging"
},
{
"title": "Internationalization",
- "href": "/extensions/i18n.html"
+ "href": "/extensions/i18n"
},
{
"title": "Message Passing",
- "href": "/extensions/messaging.html"
+ "href": "/extensions/messaging"
+ },
+ {
+ "title": "Migrate to Manifest 2",
+ "href": "/extensions/tut_migration_to_manifest_v2"
},
{
"title": "OAuth",
- "href": "/extensions/tut_oauth.html"
+ "href": "/extensions/tut_oauth"
}
]
},
{
- "title": "Distribute",
+ "title": "Distribute Extensions",
+ "href": "/extensions/hosting",
"items": [
{
"title": "Hosting",
- "href": "/extensions/hosting.html"
+ "href": "/extensions/hosting"
},
{
"title": "Packaging",
- "href": "/extensions/packaging.html"
+ "href": "/extensions/packaging"
+ },
+ {
+ "title": "One-Time Payments",
+ "href": "/webstore/one_time_payments"
},
{
"title": "Autoupdating",
- "href": "/extensions/autoupdate.html"
+ "href": "/extensions/autoupdate"
},
{
"title": "Other Deployment Options",
- "href": "/extensions/external_extensions.html"
+ "href": "/extensions/external_extensions"
+ },
+ {
+ "title": "Google Analytics",
+ "href": "/extensions/tut_analytics"
+ },
+ {
+ "title": "Publishing Themes",
+ "href": "/extensions/themes"
}
]
},
{
- "title": "Reference",
+ "title": "Chrome Platform APIs",
+ "href": "/extensions/api_index",
"items": [
{
- "title": "Chrome Platform APIs",
- "href": "/extensions/api_index.html"
- },
- {
- "title": "Web APIs",
- "href": "/extensions/api_other.html"
+ "title": "JavaScript APIs",
+ "href": "/extensions/api_index"
},
{
"title": "Manifest File Format",
- "href": "/extensions/manifest.html"
+ "href": "/extensions/manifest"
},
{
- "title": "Migrate to Manifest 2",
- "href": "/extensions/tut_migration_to_manifest_v2.html"
+ "title": "Web APIs",
+ "href": "/extensions/api_other"
},
{
"title": "Permission Warnings",
- "href": "/extensions/permission_warnings.html"
+ "href": "/extensions/permission_warnings"
},
{
"title": "Optional Permissions",
- "href": "/extensions/permissions.html"
+ "href": "/extensions/permissions"
},
{
"title": "Match Patterns",
- "href": "/extensions/match_patterns.html"
+ "href": "/extensions/match_patterns"
}
]
},
{
"title": "Help",
+ "href": "/extensions/faq",
"items": [
{
"title": "FAQ",
- "href": "/extensions/faq.html"
+ "href": "/extensions/faq"
+ },
+ {
+ "title": "Google Groups",
+ "href": "https://groups.google.com/a/chromium.org/forum/#!forum/chromium-extensions"
},
{
"title": "Stack Overflow",
@@ -766,341 +678,328 @@
]
},
{
- "title": "STORE",
+ "title": "Native Client",
"items": [
{
- "title": "Discover",
- "items": [
- {
- "title": "What Is the Chrome Web Store?",
- "href": "/webstore/index.html"
- },
- {
- "title": "What Can You Publish?",
- "href": "/webstore/index.html"
- },
- {
- "title": "Tutorial: Getting Started",
- "href": "/webstore/index.html"
- },
- {
- "title": "Best Practices",
- "href": "/webstore/index.html"
- },
- {
- "title": "Samples",
- "href": "/webstore/index.html"
- }
- ]
- },
- {
- "title": "Branding",
- "items": [
- {
- "title": "Branding Guidelines",
- "href": "/webstore/index.html"
- },
- {
- "title": "Supplying Images",
- "href": "/webstore/index.html"
- }
- ]
- },
- {
- "title": "Monetizing",
- "items": [
- {
- "title": "Seller Options",
- "href": "/webstore/index.html"
- },
- {
- "title": "Using Google Accounts",
- "href": "/webstore/index.html"
- },
- {
- "title": "Checking for Payment",
- "href": "/webstore/index.html"
- },
- {
- "title": "Payments: Regions, Fees, & Tiers",
- "href": "/webstore/index.html"
- }
- ]
- },
- {
- "title": "Publishing",
+ "title": "Learn Basics",
+ "href": "/native-client/overview",
"items": [
{
- "title": "Step-by-step Tutorial",
- "href": "/webstore/index.html"
- },
- {
- "title": "Using Inline Installation",
- "href": "/webstore/index.html"
- },
- {
- "title": "Terms of Service",
- "href": "/webstore/index.html"
- }
- ]
- },
- {
- "title": "Help",
- "items": [
- {
- "title": "FAQ",
- "href": "/webstore/index.html"
- },
- {
- "title": "Google Groups",
- "href": "/webstore/index.html"
+ "title": "What Is Native Client?",
+ "href": "/native-client/overview"
},
{
- "title": "Articles",
- "href": "/webstore/index.html"
+ "title": "NaCl and PNaCl",
+ "href": "/native-client/nacl-and-pnacl"
}
]
},
{
- "title": "Related Content",
+ "title": "SDK",
+ "href": "/native-client/sdk/download",
"items": [
{
- "title": "Develop Chrome Apps",
- "href": "/webstore/index.html"
- },
- {
- "title": "Develop Chrome Extensions",
- "href": "/webstore/index.html"
- },
- {
- "title": "Develop Chrome Themes",
- "href": "/webstore/index.html"
- }
- ]
- }
- ]
- },
- {
- "title": "NATIVE CLIENT",
- "items": [
- {
- "title": "Discover",
- "items": [
- {
- "title": "What Is Native Client?",
- "href": "/nacl/index.html"
- },
- {
- "title": "NaCl and PNaCl",
- "href": "/nacl/index.html"
- },
- {
- "title": "Demos",
- "href": "/nacl/index.html"
- },
- {
"title": "Download SDK",
- "href": "/nacl/index.html"
+ "href": "/native-client/sdk/download"
},
{
- "title": "SDK Examples",
- "href": "/nacl/index.html"
+ "title": "Examples",
+ "href": "/native-client/sdk/examples"
},
{
"title": "SDK Release Notes",
- "href": "/nacl/index.html"
+ "href": "/native-client/sdk/release-notes"
}
]
},
{
- "title": "Getting Started Tutorial",
+ "title": "Tutorial",
+ "href": "/native-client/devguide/tutorial/tutorial-part1",
"items": [
{
"title": "Part 1: Simple PNaCl Web App",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/tutorial/tutorial-part1"
},
{
"title": "Part 2: SDK Build System and Chrome Apps",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/tutorial/tutorial-part2"
}
]
},
{
"title": "Development Cycle",
+ "href": "/native-client/devguide/devcycle/building",
"items": [
{
"title": "Building",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/devcycle/building"
},
{
"title": "Running",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/devcycle/running"
},
{
"title": "Debugging",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/devcycle/debugging"
},
{
"title": "Debugging with Visual Studio",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/devcycle/vs-addin"
},
{
- "title": "Dynamic Linking and Loading with glibc",
- "href": "/nacl/index.html"
+ "title": "Dynamic Linking and Loading with GlibC",
+ "href": "/native-client/devguide/devcycle/dynamic-loading"
}
]
},
{
"title": "Coding Your Application",
+ "href": "/native-client/devguide/coding/application-structure",
"items": [
{
"title": "Application Structure",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/application-structure"
},
{
"title": "Native Client Modules",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/native-client-modules"
},
{
"title": "3D Graphics",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/3D-graphics"
},
{
"title": "Audio",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/audio"
},
{
"title": "File I/O",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/file-io"
},
{
"title": "The nacl_io Library",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/nacl_io"
},
{
"title": "Messaging System",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/message-system"
},
{
"title": "Progress Events",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/progress-events"
},
{
"title": "URL Loading",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/url-loading"
},
{
"title": "View Change, Focus, & Input Events",
- "href": "/nacl/index.html"
+ "href": "/native-client/devguide/coding/view-focus-input-events"
}
]
},
{
- "title": "Distribute",
- "items": [
- {
- "title": "Portable Native Client",
- "href": "/nacl/index.html"
- },
- {
- "title": "Non-portable Native Client",
- "href": "/nacl/index.html"
- }
- ]
+ "title": "Distribute Your Apps",
+ "href": "/native-client/devguide/distributing"
},
{
"title": "Pepper API Reference",
+ "href": "/native-client/pepper_stable/index",
"items": [
{
- "title": "Structures",
- "href": "/nacl/index.html"
+ "title": "Pepper C Interfaces",
+ "href": "/native-client/pepper_stable/c/group___interfaces"
},
{
- "title": "Functions",
- "href": "/nacl/index.html"
+ "title": "Pepper C Structures",
+ "href": "/native-client/pepper_stable/c/group___structs"
},
{
- "title": "Enums",
- "href": "/nacl/index.html"
+ "title": "Pepper C Functions",
+ "href": "/native-client/pepper_stable/c/group___functions"
},
{
- "title": "Typedefs",
- "href": "/nacl/index.html"
+ "title": "Pepper C Enums",
+ "href": "/native-client/pepper_stable/c/group___enums"
},
{
- "title": "Macros",
- "href": "/nacl/index.html"
+ "title": "Pepper C Typedefs",
+ "href": "/native-client/pepper_stable/c/group___typedefs"
},
{
- "title": "Files",
- "href": "/nacl/index.html"
+ "title": "Pepper C Macros",
+ "href": "/native-client/pepper_stable/c/global_defs"
},
{
"title": "Pepper C++ Classes",
- "href": "/nacl/index.html"
- },
- {
- "title": "Pepper C++ Files",
- "href": "/nacl/index.html"
+ "href": "/native-client/pepper_stable/cpp/inherits"
}
]
},
{
- "title": "Additional Reference",
+ "title": "Additional Reference & Versions",
+ "href": "/native-client/glossary",
"items": [
{
"title": "Glossary",
- "href": "/nacl/index.html"
+ "href": "/native-client/glossary"
},
{
"title": "Native Client Manifest (nmf) Format",
- "href": "/nacl/index.html"
+ "href": "/native-client/reference/nacl-manifest-format"
},
{
"title": "PNaCl Bitcode Reference Manual",
- "href": "/nacl/index.html"
+ "href": "/native-client/reference/pnacl-bitcode-abi"
},
{
"title": "PNaCl C/C++ Language Support",
- "href": "/nacl/index.html"
+ "href": "/native-client/reference/pnacl-c-cpp-language-support"
+ },
+ {
+ "title": "Sandbox Internals",
+ "href": "/native-client/reference/sandbox_internals/index",
+ "items": [
+ {
+ "title": "ARM 32-bit Sandbox",
+ "href": "/native-client/reference/sandbox_internals/arm-32-bit-sandbox"
+ }
+ ]
}
]
},
{
"title": "Help",
+ "href": "/native-client/faq",
"items": [
{
"title": "FAQ",
- "href": "/nacl/index.html"
+ "href": "/native-client/faq"
},
{
"title": "Forums & Issues Tracker",
- "href": "/nacl/index.html"
+ "href": "/native-client/help"
},
{
"title": "Publications & Presentations",
- "href": "/nacl/index.html"
+ "href": "/native-client/publications-and-presentations"
},
{
"title": "Security Contest Archive",
- "href": "/nacl/index.html"
+ "href": "/native-client/community/security-contest/index"
}
]
+ }
+ ]
+ },
+ {
+ "title": "Store",
+ "items": [
+ {
+ "title": "What Is the Chrome Web Store?",
+ "href": "/webstore/index"
+ },
+ {
+ "title": "What Can You Publish?",
+ "href": "/webstore/overview"
},
{
- "title": "Previous Versions",
+ "title": "Tutorial: Getting Started",
+ "href": "/webstore/get_started_simple"
+ },
+ {
+ "title": "Samples",
+ "href": "/webstore/samples"
+ },
+ {
+ "title": "Branding",
+ "href": "/webstore/branding",
"items": [
{
- "title": "Beta (Pepper 30)",
- "href": "/nacl/index.html"
+ "title": "Branding Guidelines",
+ "href": "/webstore/branding"
},
{
- "title": "Stable (Pepper 29)",
- "href": "/nacl/index.html"
+ "title": "Supplying Images",
+ "href": "/webstore/images"
+ }
+ ]
+ },
+ {
+ "title": "Monetizing",
+ "href": "/webstore/money",
+ "items": [
+ {
+ "title": "Monetizing Your App",
+ "href": "/webstore/money"
+ },
+ {
+ "title": "Using Google Accounts",
+ "href": "/webstore/identify_user"
+ },
+ {
+ "title": "Checking for Payment",
+ "href": "/webstore/check_for_payment"
+ },
+ {
+ "title": "One-Time Payments",
+ "href": "/webstore/one_time_payments"
+ },
+ {
+ "title": "Pricing",
+ "href": "/webstore/pricing"
+ }
+ ]
+ },
+ {
+ "title": "Publishing",
+ "href": "/webstore/publish",
+ "items": [
+ {
+ "title": "Publishing Tutorial",
+ "href": "/webstore/publish"
+ },
+ {
+ "title": "Internationalizing Your App",
+ "href": "/webstore/i18n"
},
{
- "title": "Deprecated",
- "href": "/nacl/index.html"
+ "title": "Using Inline Installation",
+ "href": "/webstore/inline_installation"
+ },
+ {
+ "title": "Rating Guidelines",
+ "href": "/webstore/rating"
+ },
+ {
+ "title": "Program Policies",
+ "href": "/webstore/program_policies"
+ },
+ {
+ "title": "Terms of Service",
+ "href": "/webstore/terms"
+ }
+ ]
+ },
+ {
+ "title": "Help",
+ "href": "/webstore/best_practices",
+ "items": [
+ {
+ "title": "Best Practices",
+ "href": "/webstore/best_practices"
+ },
+ {
+ "title": "FAQ",
+ "href": "/webstore/faq"
+ },
+ {
+ "title": "Google Groups",
+ "href": "https://groups.google.com/a/chromium.org/forum/#!forum/chromium-apps"
+ },
+ {
+ "title": "Articles",
+ "href": "/webstore/articles"
}
]
}
diff --git a/chromium/chrome/common/extensions/docs/templates/json/content_providers.json b/chromium/chrome/common/extensions/docs/templates/json/content_providers.json
index fc003a408c3..a1448d00826 100644
--- a/chromium/chrome/common/extensions/docs/templates/json/content_providers.json
+++ b/chromium/chrome/common/extensions/docs/templates/json/content_providers.json
@@ -41,6 +41,14 @@
// this to true. Otherwise, it's safer and more efficient to omit it.
{
+ "cr-chrome-docs-home": {
+ "chromium": {
+ "dir": "chrome/docs"
+ },
+ "defaultExtensions": [".html", ".md"],
+ "serveFrom": "home",
+ "supportsTemplates": true
+ },
"cr-extensions-examples": {
"chromium": {
"dir": "chrome/common/extensions/docs/examples"
@@ -52,6 +60,7 @@
"chromium": {
"dir": "chrome/common/extensions/docs/templates/public"
},
+ "defaultExtensions": [".html", ".md"],
"serveFrom": "",
"supportsTemplates": true
},
@@ -63,31 +72,32 @@
},
"cr-native-client": {
"chromium": {
- "dir": "components/nacl/docs/dev"
+ "dir": "native_client_sdk/doc_generated"
+ },
+ "defaultExtensions": [".html", ".md"],
+ "serveFrom": "native-client",
+ "supportsTemplates": true
+ },
+ "devtools-docs": {
+ "defaultExtensions": [".html", ".md"],
+ "gcs": {
+ "bucket": "gs://chromedocs-devtools"
},
- "serveFrom": "nacl",
+ "serveFrom": "devtools",
"supportsTemplates": true
},
- //"devtools-docs": {
- // "github": {
- // "owner": "GoogleChrome",
- // "repo": "devtools-docs-migration"
- // },
- // "serveFrom": "devtools",
- // "supportsTemplates": true
- //},
"multidevice-docs": {
- "github": {
- "owner": "GoogleChrome",
- "repo": "multi-device"
+ "defaultExtensions": [".html", ".md"],
+ "gcs": {
+ "bucket": "gs://chromedocs-multidevice"
},
"serveFrom": "multidevice",
"supportsTemplates": true
},
"webstore-docs": {
- "github": {
- "owner": "GoogleChrome",
- "repo": "webstore-docs"
+ "defaultExtensions": [".html", ".md"],
+ "gcs": {
+ "bucket": "gs://chromedocs-webstore"
},
"serveFrom": "webstore",
"supportsTemplates": true
diff --git a/chromium/chrome/common/extensions/docs/templates/json/extensions_sidenav.json b/chromium/chrome/common/extensions/docs/templates/json/extensions_sidenav.json
index 5ec43b7f02f..75ad47c1053 100644
--- a/chromium/chrome/common/extensions/docs/templates/json/extensions_sidenav.json
+++ b/chromium/chrome/common/extensions/docs/templates/json/extensions_sidenav.json
@@ -1,19 +1,19 @@
[
{
"title": "Getting Started",
- "href": "/extensions/getstarted.html"
+ "href": "/extensions/getstarted"
},
{
"title": "Overview",
- "href": "/extensions/overview.html"
+ "href": "/extensions/overview"
},
{
"title": "What's New?",
- "href": "/extensions/whats_new.html"
+ "href": "/extensions/whats_new"
},
{
"title": "Developer's Guide",
- "href": "/extensions/devguide.html",
+ "href": "/extensions/devguide",
"items": [
{
"title": "Browser UI",
@@ -21,31 +21,31 @@
"items": [
{
"title": "Browser Actions",
- "href": "/extensions/browserAction.html"
+ "href": "/extensions/browserAction"
},
{
"title": "Context Menus",
- "href": "/extensions/contextMenus.html"
+ "href": "/extensions/contextMenus"
},
{
"title": "Desktop Notifications",
- "href": "/extensions/desktop_notifications.html"
+ "href": "/extensions/desktop_notifications"
},
{
"title": "Omnibox",
- "href": "/extensions/omnibox.html"
+ "href": "/extensions/omnibox"
},
{
"title": "Options Pages",
- "href": "/extensions/options.html"
+ "href": "/extensions/options"
},
{
"title": "Override Pages",
- "href": "/extensions/override.html"
+ "href": "/extensions/override"
},
{
"title": "Page Actions",
- "href": "/extensions/pageAction.html"
+ "href": "/extensions/pageAction"
}
]
},
@@ -55,35 +55,35 @@
"items": [
{
"title": "Bookmarks",
- "href": "/extensions/bookmarks.html"
+ "href": "/extensions/bookmarks"
},
{
"title": "Cookies",
- "href": "/extensions/cookies.html"
+ "href": "/extensions/cookies"
},
{
"title": "Extending DevTools",
- "href": "/extensions/devtools.html"
+ "href": "/extensions/devtools"
},
{
"title": "Events",
- "href": "/extensions/events.html"
+ "href": "/extensions/events"
},
{
"title": "History",
- "href": "/extensions/history.html"
+ "href": "/extensions/history"
},
{
"title": "Management",
- "href": "/extensions/management.html"
+ "href": "/extensions/management"
},
{
"title": "Tabs",
- "href": "/extensions/tabs.html"
+ "href": "/extensions/tabs"
},
{
"title": "Windows",
- "href": "/extensions/windows.html"
+ "href": "/extensions/windows"
}
]
},
@@ -93,39 +93,39 @@
"items": [
{
"title": "Accessibility",
- "href": "/extensions/a11y.html"
+ "href": "/extensions/a11y"
},
{
"title": "Event Pages",
- "href": "/extensions/event_pages.html"
+ "href": "/extensions/event_pages"
},
{
"title": "Content Security Policy",
- "href": "/extensions/contentSecurityPolicy.html"
+ "href": "/extensions/contentSecurityPolicy"
},
{
"title": "Content Scripts",
- "href": "/extensions/content_scripts.html"
+ "href": "/extensions/content_scripts"
},
{
"title": "Cross-Origin XHR",
- "href": "/extensions/xhr.html"
+ "href": "/extensions/xhr"
},
{
"title": "Internationalization",
- "href": "/extensions/i18n.html"
+ "href": "/extensions/i18n"
},
{
"title": "Message Passing",
- "href": "/extensions/messaging.html"
+ "href": "/extensions/messaging"
},
{
"title": "Optional Permissions",
- "href": "/extensions/permissions.html"
+ "href": "/extensions/permissions"
},
{
"title": "NPAPI Plugins",
- "href": "/extensions/npapi.html"
+ "href": "/extensions/npapi"
}
]
},
@@ -135,11 +135,11 @@
"items": [
{
"title": "Hosting",
- "href": "/extensions/hosting.html"
+ "href": "/extensions/hosting"
},
{
"title": "Other Deployment Options",
- "href": "/extensions/external_extensions.html"
+ "href": "/extensions/external_extensions"
}
]
}
@@ -147,23 +147,23 @@
},
{
"title": "Tutorials",
- "href": "/extensions/tutorials.html",
+ "href": "/extensions/tutorials",
"items": [
{
"title": "Manifest V2",
- "href": "/extensions/tut_migration_to_manifest_v2.html"
+ "href": "/extensions/tut_migration_to_manifest_v2"
},
{
"title": "Debugging",
- "href": "/extensions/tut_debugging.html"
+ "href": "/extensions/tut_debugging"
},
{
"title": "Google Analytics",
- "href": "/extensions/tut_analytics.html"
+ "href": "/extensions/tut_analytics"
},
{
"title": "OAuth",
- "href": "/extensions/tut_oauth.html"
+ "href": "/extensions/tut_oauth"
}
]
},
@@ -176,25 +176,25 @@
"items": [
{
"title": "Manifest Files",
- "href": "/extensions/manifest.html"
+ "href": "/extensions/manifest"
},
{
"title": "Match Patterns",
- "href": "/extensions/match_patterns.html"
+ "href": "/extensions/match_patterns"
}
]
},
{
"title": "Permission Warnings",
- "href": "/extensions/permission_warnings.html"
+ "href": "/extensions/permission_warnings"
},
{
"title": "chrome.* APIs",
- "href": "/extensions/api_index.html"
+ "href": "/extensions/api_index"
},
{
"title": "Other APIs",
- "href": "/extensions/api_other.html"
+ "href": "/extensions/api_other"
}
]
},
@@ -203,7 +203,7 @@
"items": [
{
"title": "FAQ",
- "href": "/extensions/faq.html"
+ "href": "/extensions/faq"
},
{
"title": "Chrome Web Store",
@@ -215,7 +215,7 @@
},
{
"title": "Themes",
- "href": "/extensions/themes.html"
+ "href": "/extensions/themes"
}
]
}
diff --git a/chromium/chrome/common/extensions/docs/templates/json/intro_tables.json b/chromium/chrome/common/extensions/docs/templates/json/intro_tables.json
index 47485f9e0dd..36919566682 100644
--- a/chromium/chrome/common/extensions/docs/templates/json/intro_tables.json
+++ b/chromium/chrome/common/extensions/docs/templates/json/intro_tables.json
@@ -2,7 +2,7 @@
"alarms": {
"Learn More": [
{
- "link": "event_pages.html",
+ "link": "event_pages",
"text": "Event Pages"
}
]
@@ -10,7 +10,7 @@
"app_runtime": {
"Learn More": [
{
- "link": "app_lifecycle.html",
+ "link": "app_lifecycle",
"text": "Manage App Lifecycle"
},
{
@@ -22,11 +22,11 @@
"app_window": {
"Learn More": [
{
- "link": "about_apps.html#look",
+ "link": "about_apps#look",
"text": "How they look"
},
{
- "link": "app_lifecycle.html",
+ "link": "app_lifecycle",
"text": "Manage App Lifecycle"
},
{
@@ -38,8 +38,24 @@
"bluetooth": {
"Learn More": [
{
- "link": "app_usb.html",
- "text": "Accessing Hardware Devices"
+ "link": "app_bluetooth",
+ "text": "Bluetooth"
+ }
+ ]
+ },
+ "bluetoothLowEnergy": {
+ "Learn More": [
+ {
+ "link": "app_bluetooth.html",
+ "text": "Bluetooth"
+ }
+ ]
+ },
+ "bluetoothSocket": {
+ "Learn More": [
+ {
+ "link": "app_bluetooth.html",
+ "text": "Bluetooth"
}
]
},
@@ -50,7 +66,7 @@
"text": "\"cookies\""
},
{
- "link": "declare_permissions.html#host-permissions",
+ "link": "declare_permissions#host-permissions",
"text": "host permissions"
}
]
@@ -58,11 +74,11 @@
"declarativeContent": {
"Learn More": [
{
- "link": "events.html",
+ "link": "events",
"text": "Declarative Events"
},
{
- "link": "activeTab.html",
+ "link": "activeTab",
"text": "activeTab"
}
]
@@ -74,7 +90,7 @@
"text": "\"declarativeWebRequest\""
},
{
- "link": "declare_permissions.html#host-permissions",
+ "link": "declare_permissions#host-permissions",
"text": "host permissions"
}
]
@@ -104,11 +120,11 @@
],
"Learn More": [
{
- "link": "app_storage.html",
+ "link": "app_storage",
"text": "Manage Data"
},
{
- "link": "angular_framework.html",
+ "link": "angular_framework",
"text": "Build Apps with AngularJS"
},
{
@@ -117,10 +133,18 @@
}
]
},
+ "gcm": {
+ "Learn More": [
+ {
+ "link": "cloudMessagingV2",
+ "text": "Google Cloud Messaging"
+ }
+ ]
+ },
"identity": {
"Learn More": [
{
- "link": "app_identity.html",
+ "link": "app_identity",
"text": "Identify User"
}
]
@@ -157,7 +181,7 @@
"permissions": {
"Learn More": [
{
- "link": "declare_permissions.html",
+ "link": "declare_permissions",
"text": "Declaring permissions"
}
]
@@ -165,11 +189,11 @@
"pushMessaging": {
"Learn More": [
{
- "link": "cloudMessaging.html",
+ "link": "cloudMessaging",
"text": "Google Cloud Messaging for Chrome"
},
{
- "link": "gcm_server.html",
+ "link": "gcm_server",
"text": "API Reference for GCM service"
}
]
@@ -177,11 +201,11 @@
"runtime": {
"Learn More": [
{
- "link": "app_lifecycle.html",
+ "link": "app_lifecycle",
"text": "Manage App Lifecycle"
},
{
- "link": "event_pages.html",
+ "link": "event_pages",
"text": "Event Pages"
}
]
@@ -189,7 +213,7 @@
"serial": {
"Learn More": [
{
- "link": "app_usb.html",
+ "link": "app_usb",
"text": "Accessing Hardware Devices"
}
]
@@ -206,11 +230,11 @@
],
"Learn More": [
{
- "link": "app_network.html",
+ "link": "app_network",
"text": "Network Communications"
},
{
- "link": "sencha_framework.html",
+ "link": "sencha_framework",
"text": "Build Apps with Sencha ExtJS"
},
{
@@ -238,7 +262,7 @@
"syncFileSystem": {
"Learn More": [
{
- "link": "app_storage.html",
+ "link": "app_storage",
"text": "Manage Data"
},
{
@@ -265,7 +289,7 @@
"usb": {
"Learn More": [
{
- "link": "app_usb.html",
+ "link": "app_usb",
"text": "Accessing Hardware Devices"
}
]
@@ -277,7 +301,7 @@
"text": "\"webRequest\""
},
{
- "link": "declare_permissions.html#host-permissions",
+ "link": "declare_permissions#host-permissions",
"text": "host permissions"
}
]
diff --git a/chromium/chrome/common/extensions/docs/templates/json/manifest.json b/chromium/chrome/common/extensions/docs/templates/json/manifest.json
index 4564d9ad71d..18c94b03118 100644
--- a/chromium/chrome/common/extensions/docs/templates/json/manifest.json
+++ b/chromium/chrome/common/extensions/docs/templates/json/manifest.json
@@ -16,11 +16,30 @@
"example": false,
"level": "recommended"
},
- "browser_action": {
+ "bluetooth": {
+ "documentation": "manifest/bluetooth.html",
+ "example": {
+ "uuids": [ "1105", "1006" ]
+ }
+ },
+ "browser_action": {
"documentation": "browserAction.html",
"example": {},
"level": "only_one"
},
+ "chrome_settings_overrides": {
+ "documentation": "settings_override.html",
+ "example": {}
+ },
+ "chrome_ui_overrides": {
+ "documentation": "ui_override.html",
+ "example": {
+ "bookmarks_ui": {
+ "remove_button": true,
+ "remove_bookmark_shortcut": true
+ }
+ }
+ },
"chrome_url_overrides": {
"documentation": "override.html",
"example": {}
@@ -139,6 +158,12 @@
"documentation": "manifest/name.html#short_name",
"example": "Short Name"
},
+ "sockets": {
+ "documentation": "manifest/sockets.html",
+ "example": {
+ "tcp": { "connect": "*" }, "udp": { "send": "*" }
+ }
+ },
"storage": {
"documentation": "manifest/storage.html",
"example": {
diff --git a/chromium/chrome/common/extensions/docs/templates/json/permissions.json b/chromium/chrome/common/extensions/docs/templates/json/permissions.json
index a95a2991095..5d3a415c9bd 100644
--- a/chromium/chrome/common/extensions/docs/templates/json/permissions.json
+++ b/chromium/chrome/common/extensions/docs/templates/json/permissions.json
@@ -20,9 +20,9 @@
},
"chrome://favicon/": {
"anchor": "favicon",
+ "extension_types": ["extension"],
"name": "chrome://favicon/",
- "partial": "permissions/favicon.html",
- "platforms": ["extension"]
+ "partial": "permissions/favicon.html"
},
"clipboardRead": {
"partial": "permissions/clipboard_read.html"
@@ -39,6 +39,9 @@
"geolocation": {
"partial": "permissions/geolocation.html"
},
+ "nativeMessaging": {
+ "partial": "permissions/nativeMessaging.html"
+ },
"notifications": {
"partial": "permissions/notifications.html"
},
diff --git a/chromium/chrome/common/extensions/docs/templates/json/whats_new.json b/chromium/chrome/common/extensions/docs/templates/json/whats_new.json
new file mode 100644
index 00000000000..4975419e8b5
--- /dev/null
+++ b/chromium/chrome/common/extensions/docs/templates/json/whats_new.json
@@ -0,0 +1,367 @@
+{
+ "backgroundpages.to-be-non-persistent": {
+ "type": "additionsToExistingApis",
+ "description": "Background pages can optionally be non-persistent, using a feature we call <code>event pages</code>. Event pages run only while they're being used, and will unload when idle to save resources.",
+ "version": 22
+ },
+ "chromeSetting.set-regular-only-scope": {
+ "type": "additionsToExistingApis",
+ "description": "The types.ChromeSetting.set method now has a <code>regular_only</code> scope.",
+ "version": 21
+ },
+ "browsingData.RemovalOptions.set-originTypes-property": {
+ "type": "additionsToExistingApis",
+ "description": "The browsingData.RemovalOptions now has an <code>originTypes</code> property.",
+ "version": 21
+ },
+ "management.uninstall.set-showConfirmDialog": {
+ "type": "additionsToExistingApis",
+ "description": "The management.uninstall method now has a <code>showConfirmDialog</code> parameter.",
+ "version": 21
+ },
+ "contextMenus.create.set-unique-IDs": {
+ "type": "additionsToExistingApis",
+ "description": "The contextMenus.create method now allows you to specify unique IDs for each item. This is intended to be used with the new <code>contextMenus.onClicked</code> event, to distinguish the clicked item.",
+ "version": 21
+ },
+ "browserAction.setIcon-and-pageAction.setIcon": {
+ "type": "additionsToExistingApis",
+ "description": "The browserAction.setIcon and pageAction.setIcon methods now accept optional callbacks.",
+ "version": 21
+ },
+ "privacy.websites.has-protectedContentEnabled-property": {
+ "type": "additionsToExistingApis",
+ "description": "The privacy.websites namespace now has a <code>protectedContentEnabled</code> property.",
+ "version": 21
+ },
+ "tabs.move.index.accept--1": {
+ "type": "additionsToExistingApis",
+ "description": "The <code>index</code> parameter to the tabs.move method now accepts -1 to indicate that the tab should be placed at the end.",
+ "version": 21
+ },
+ "tabs.highlight.windowId.be-optional": {
+ "type": "additionsToExistingApis",
+ "description": "The <code>windowId</code> parameter to the tabs.highlight method is now optional.",
+ "version": 21
+ },
+ "manifest-v1-deprecated": {
+ "type": "manifestChanges",
+ "description": "Manifest version 1 was deprecated in Chrome 18 and will be phased out according to the Manifest version 1 support",
+ "version": 20
+ },
+ "chrome.contextMenus.create-and-update-has-enabled-parameter": {
+ "type": "additionsToExistingApis",
+ "description": "The chrome.contextMenus contextMenus.create and contextMenus.update methods now have an <code>enabled</code> parameter.",
+ "version": 20
+ },
+ " privacy.services.has-spellingServiceEnabled-setting": {
+ "type": "additionsToExistingApis",
+ "description": "The privacy API's privacy.services object now has a <code>spellingServiceEnabled</code> setting.",
+ "version": 20
+ },
+ "chrome.tabs.executeScript-and-insertCSS-has-runAt-parameter": {
+ "type": "additionsToExistingApis",
+ "description": "The chrome.tabs tabs.executeScript and tabs.insertCSS now accept a runAt parameter.",
+ "version": 20
+ },
+ "sendRequest.deprecated-for-runtime-and-sendMessage": {
+ "type": "additionsToExistingApis",
+ "description": "The <code>sendRequest()</code> method has been deprecated in favor of the <code>sendMessage()</code> method for both the runtime.sendMessage and tabs.sendMessage.",
+ "version": 20
+ },
+ "window.window.support-fullscreen-state": {
+ "type": "additionsToExistingApis",
+ "description": "The window API's windows.Window object now has an <code>alwaysOnTop</code> property and supports the fullscreen state.",
+ "version": 19
+ },
+ "chrome.tabs.query.has-currentWindow-and-lastFocusedWindow-parameter": {
+ "type": "additionsToExistingApis",
+ "description": "The <code>chrome.tabs</code> tabs.query method now has the <code>currentWindow</code> and <code>lastFocusedWindow</code> parameters.",
+ "version": 19
+ },
+ "browser.action.api.has-new-getter-fucntions": {
+ "type": "additionsToExistingApis",
+ "description": "The browser action API has the following new getter functions: browserAction.getTitle, browserAction.getBadgeText, browserAction.getBadgeBackgroundColor, and browserAction.getPopup.",
+ "version": 19
+ },
+ "page.action.has-new-getter-functions": {
+ "type": "additionsToExistingApis",
+ "description": "The page action API has the following new getter functions: pageAction.getTitle and pageAction.getPopup.",
+ "version": 19
+ },
+ "chrome.tabs.create-update-methods-has-openerTabId-parameter": {
+ "type": "additionsToExistingApis",
+ "description": "The chrome.tabs tabs.create and tabs.update methods now have an <code>openerTabId</code> parameter",
+ "version": 18
+ },
+ "new-manifest-version-field-specifies-the-version": {
+ "type": "manifestChanges",
+ "description": "The new manifest version field specifies the version of the manifest that your package requires. As of Chrome 18, you should use manifest version 2.",
+ "version": 18
+ },
+ "new-CSP-field-define-extensions-policies": {
+ "type": "manifestChanges",
+ "description": "The new Content Security Policy (CSP) field is used to define an extension's policies towards the types of content that can be loaded and executed by the extension.",
+ "version": 18
+ },
+ "background-pages-includes-scripts-property": {
+ "type": "manifestChanges",
+ "description": "Most background pages only include a list of script files. For these background pages, you can use the new background.scripts property and Chrome will generate a background page for you.",
+ "version": 18
+ },
+ "new-web-accessible-resources-field": {
+ "type": "manifestChanges",
+ "description": "The new web_accessible_resources field specifies the paths of packaged resources that are expected to be usable in the context of a web page.",
+ "version": 18
+ },
+ "permission-be-optional-for-some-apis": {
+ "type": "manifestChanges",
+ "description": "Permissions can be optional for the content setting API, the web navigation API, and the new web request API.",
+ "version": 17
+ },
+ "management.ExtensionInfo.object.has-disabledReason-property": {
+ "type": "additionsToExistingApis",
+ "description": "The management API's management.ExtensionInfo object now has a <code>disabledReason</code> property.",
+ "version": 17
+ },
+ "omnibox.api.works-in-split-incognito-mode": {
+ "type": "additionsToExistingApis",
+ "description": "The omnibox API now works in split incognito mode.",
+ "version": 17
+ },
+ "new-requirements-field-declare-extension-requirements": {
+ "type": "manifestChanges",
+ "description": "The new requirements field allows you to declare extension requirements up front. For example, you can use this field to specify that your app requires 3D graphics support in order to use features such as CSS 3D Tranforms or WebGL.",
+ "version": 16
+ },
+ "tabs.query.gets-all-tabs": {
+ "type": "additionsToExistingApis",
+ "description": "The new tabs.query method gets all tabs that have the specified properties or all tabs if no properties are specified.",
+ "version": 16
+ },
+ "tabs.reload.preserve-local-cache": {
+ "type": "additionsToExistingApis",
+ "description": "The new tabs.reload method reloads a tab and includes the option to preserve the local cache of the reloaded tab.",
+ "version": 16
+ },
+ "management.ExtensionInfo.has-updateURL-property": {
+ "type": "additionsToExistingApis",
+ "description": "The management API's management.ExtensionInfo object now has an <code>updateURL</code> property.",
+ "version": 16
+ },
+ "external_extensions.json.limit-supported-locals": {
+ "type": "additionsToExistingApis",
+ "description": "You can now limit the supported locales for an external extension by adding the <code>supported_locales</code> attribute to the <code>external_extensions.json</code>.",
+ "version": 16
+ },
+ "getAllInWindow-getSelected.deprecated": {
+ "type": "additionsToExistingApis",
+ "description": "The methods <code>getAllInWindow()</code> and <code>getSelected()</code> have been deprecated. To get details about all tabs in the specified window, use tabs.query with the argument {'windowId': windowId}. To get the tab that is selected in the specified window, use <code>chrome.tabs.query()</code> with the argument <code>{'active': true}</code>.",
+ "version": 16
+ },
+ "tabs.upate-doesnot-need-tabId": {
+ "type": "additionsToExistingApis",
+ "description": "You are no longer required to specify the <code>tabId</code> for the tabs.update method. When not provided, the tabId defaults to the selected tab of the current window.",
+ "version": 16
+ },
+ "external-files-be-owned-by-users-in-wheel-group": {
+ "type": "additionsToExistingApis",
+ "description": "External extension files on Mac OS can now be owned by users within a wheel group (or an admin group).",
+ "version": 16
+ },
+ "experimental-permission-no-longer-required-for-panel-type": {
+ "type": "additionsToExistingApis",
+ "description": "The experimental permission is no longer required for the panel type. By default, the panel type creates a popup unless the <code>--enable-panels</code> flag is set.",
+ "version": 16
+ },
+ "offline_enabled.field-specify-without-connection": {
+ "type": "manifestChanges",
+ "description": "The new offline_enabled field lets you specify that your app works well even without an internet connection.",
+ "version": 15
+ },
+ "management.getPermissionWarningsById.retrieve-permission-warning": {
+ "type": "additionsToExistingApis",
+ "description": "You can retrieve permission warnings using the new management API methods management.getPermissionWarningsById and management.getPermissionWarningsByManifest.",
+ "version": 15
+ },
+ "management.ExtensionInfo.has-offlineEnabled": {
+ "type": "additionsToExistingApis",
+ "description": "The management API’s management.ExtensionInfo object has a new field, offlineEnabled.",
+ "version": 15
+ },
+ "internationalize.using-placeholders": {
+ "type": "additionsToExistingApis",
+ "description": "You can now internationalize content script CSS files by using __MSG_messagename__ placeholders.",
+ "version": 15
+ },
+ "tabs.update.callback-passed-null": {
+ "type": "additionsToExistingApis",
+ "description": "The callback for the tabs.update method is passed null instead of the tab details if the extension does not have the tabs permission.",
+ "version": 15
+ },
+ "content_security_policy-prevent-xss-attack": {
+ "type": "manifestChanges",
+ "description": "The new content_security_policy field can help prevent cross-site scripting vulnerabilities in your extension.",
+ "version": 14
+ },
+ "nacl_modules.register-native-client-modules": {
+ "type": "manifestChanges",
+ "description": "The new nacl_modules field lets you register Native Client modules as content handlers for MIME types.",
+ "version": 14
+ },
+ "context.menu.items-appear-in-documents": {
+ "type": "additionsToExistingApis",
+ "description": "Context menu items can now appear even in documents that have file:// or chrome:// URLs. Previously, they were restricted to documents with http:// or https:// URLs.",
+ "version": 14
+ },
+ "drawAttention-field-specify-that-window": {
+ "type": "additionsToExistingApis",
+ "description": "An optional drawAttention field in windows.update's updateInfo object lets you specify that the window should entice the user to change focus to it.",
+ "version": 14
+ },
+ "bookmarks.getSubTree-retrieve-bookmarks-hierarchy": {
+ "type": "additionsToExistingApis",
+ "description": "The new bookmarks.getSubTree function lets you retrieve just part of the Bookmarks hierarchy",
+ "version": 14
+ },
+ "tabs.permission.no-longer-required-for-tabs-remove": {
+ "type": "additionsToExistingApis",
+ "description": "The tabs permission is no longer required for tabs.remove and tabs.onRemoved.",
+ "version": 14
+ },
+ "exclude_matches-targets-content-script-precisely": {
+ "type": "manifestChanges",
+ "description": "A new <code>exclude_matches</code> item in the content_scripts field lets you target your content script more precisely. For details, see Match patterns and globs.",
+ "version": 13
+ },
+ "new-clipboardRead-specify-capabilities-for-document.execCommand": {
+ "type": "manifestChanges",
+ "description": "New clipboardRead and clipboardWrite permissions specify capabilities for <code>document.execCommand()</code>.",
+ "version": 13
+ },
+ "content-scripts-make-cross-origin-requests": {
+ "type": "additionsToExistingApis",
+ "description": "Content scripts can now make cross-origin XMLHttpRequests to the same sites that their parent extension can, eliminating the need to relay these requests through a background page.",
+ "version": 13
+ },
+ "use-runat-in-greasemonkey-script": {
+ "type": "additionsToExistingApis",
+ "description": "You can now use <code>@run-at</code> in an imported Greasemonkey script to control when the script is injected. It works the same way as <code>run_at</code> in content scripts.",
+ "version": 13
+ },
+ "two-new-chrome-extension-methods": {
+ "type": "additionsToExistingApis",
+ "description": "Two new <code>chrome.extension</code> methods—extension.isAllowedFileSchemeAccess and extension.isAllowedIncognitoAccess—let you determine whether your extension has increased access, which the user specifies using the extensions management page (chrome://extensions).",
+ "version": 12
+ },
+ "window.create.takes-focused-value": {
+ "type": "additionsToExistingApis",
+ "description": "The windows.create method can now take a <code>focused</code> value. Previously, all new windows had the keyboard focus; now you can create windows without interrupting the user's typing.",
+ "version": 12
+ },
+ "manifest-specifies-experimental-permission": {
+ "type": "additionsToExistingApis",
+ "description": "If the manifest specifies experimental permission, your extension can specify panel as the value of the <code>type</code> field in the windows.create method or the windows.Window type.",
+ "version": 12
+ },
+ "cookies.onChanged.event-has-a-cause-parameter": {
+ "type": "additionsToExistingApis",
+ "description": "The cookies.onChanged event of <code>chrome.cookies</code> now has a <code>cause</code> parameter.",
+ "version": 12
+ },
+ "chrome.contextMenus.create.specifies-frame-value": {
+ "type": "additionsToExistingApis",
+ "description": "The <code>chrome.contextMenus</code> contextMenus.create and contextMenus.update methods now let you specify a context value of frame",
+ "version": 12
+ },
+ "host-permission-for-tabs-operation": {
+ "type": "additionsToExistingApis",
+ "description": "For security reasons, you can no longer call tabs.captureVisibleTab on just any tab. Instead, you now must have host permission for the URL displayed by that tab. To get the previous behavior, specify <code><all_urls></code> for the host permission.",
+ "version": 11
+ },
+ "management.ExtensionInfo.has-homepageUrl-property": {
+ "type": "additionsToExistingApis",
+ "description": "The management API's management.ExtensionInfo object now has a <code>homepageUrl</code> property.",
+ "version": 11
+ },
+ "management.has-homepageUrl-property": {
+ "type": "additionsToExistingApis",
+ "description": "The management API now lets you get the icons of disabled apps and extensions. Also, you can now modify the regular icon's URL to get its disabled equivalent. See management.IconInfo for details.",
+ "version": 11
+ },
+ "cookies.set-take-callbacks": {
+ "type": "additionsToExistingApis",
+ "description": "The cookies API cookies.set and cookies.remove methods can now take callbacks.",
+ "version": 11
+ },
+ "new.background-permission-extends-life-of-chrome": {
+ "type": "manifestChanges",
+ "description": "The new background permission extends the life of Chrome, allowing your extension or app to run even when Chrome has no windows open.",
+ "version": 10
+ },
+ "windows.create.has-tabId-field": {
+ "type": "additionsToExistingApis",
+ "description": "The windows.create method now has a <code>tabId</code> field. You can use it to move a tab or panel into a new window.",
+ "version": 10
+ },
+ "homepage-url-field-specify-extension-homepage": {
+ "type": "manifestChanges",
+ "description": "The homepage_url field lets you specify the extension or app's homepage.",
+ "version": 9
+ },
+ "tabs.Tab.has-pinned-property": {
+ "type": "additionsToExistingApis",
+ "description": "The tabs.Tab object now has a <code>pinned</code> property that's reflected in various <code>chrome.tabs</code> methods. For example, you can tabs.create a pinned tab.",
+ "version": 9
+ },
+ "windows.create.takes-urls": {
+ "type": "additionsToExistingApis",
+ "description": "The windows.create method can now take a list of URLs, letting you create multiple tabs in the new window.",
+ "version": 9
+ },
+ "management.get.specified-apps": {
+ "type": "additionsToExistingApis",
+ "description": "The new management.get method lets you get information about the specified extension or app.",
+ "version": 9
+ },
+ "introduce-split-incognito-mode": {
+ "type": "manifestChanges",
+ "description": "Introduced split incognito mode as the default for installable web apps (also available to extensions).",
+ "version": 7
+ },
+ "tabs.create-and-update-no-longer-require-tabs-permission": {
+ "type": "manifestChanges",
+ "description": "The tabs API <code>create()</code> and <code>update()</code> methods no longer require the tabs permission, removing one common cause of scary dialogs.",
+ "version": 7
+ },
+ "geolocation-permission-access-users-location": {
+ "type": "manifestChanges",
+ "description": "The geolocation permission gives an extension access to the user's physical location.",
+ "version": 6
+ },
+ "match-patterns-select-all-schemes": {
+ "type": "manifestChanges",
+ "description": "Match patterns can now select all schemes or all URLs.",
+ "version": 6
+ },
+ "access-file-urls-triggers-access-warning": {
+ "type": "manifestChanges",
+ "description": "Access to file:/// URLs no longer triggers the access to your machine security warning, but now requires user opt-in from the extensions management page.",
+ "version": 6
+ },
+ "extension.getViews.return-popup-views": {
+ "type": "additionsToExistingApis",
+ "description": "The extension.getViews method can now return popup views.",
+ "version": 6
+ },
+ "windows.WINDOW_ID_NONE.identifies": {
+ "type": "additionsToExistingApis",
+ "description": "A new windows.WINDOW_ID_NONE constant identifies when focus shifts away from the browser.",
+ "version": 6
+ },
+ "tabs.getCurrent-returns-tab": {
+ "type": "additionsToExistingApis",
+ "description": "The new tabs.getCurrent method returns the tab associated with the currently executing script.",
+ "version": 6
+ }
+}
diff --git a/chromium/chrome/common/extensions/docs/templates/public/apps/redirects.json b/chromium/chrome/common/extensions/docs/templates/public/apps/redirects.json
index e689f8f5bdd..c393f100ce0 100644
--- a/chromium/chrome/common/extensions/docs/templates/public/apps/redirects.json
+++ b/chromium/chrome/common/extensions/docs/templates/public/apps/redirects.json
@@ -1,11 +1,12 @@
{
- "": "about_apps.html",
- "app_csp.html": "contentSecurityPolicy.html",
- "experimental_systemInfo_storage.html": "system_storage.html",
- "in_app_payments.html": "google_wallet.html",
- "index.html": "about_apps.html",
- "systemInfo_cpu.html": "system_cpu.html",
- "systemInfo_display.html": "system_display.html",
- "systemInfo_memory.html": "system_memory.html",
- "webview_tag.html": "tags/webview.html"
+ "": "about_apps",
+ "app_csp": "contentSecurityPolicy",
+ "experimental_systemInfo_storage": "system_storage",
+ "in_app_payments": "google_wallet",
+ "index": "about_apps",
+ "systemInfo_cpu": "system_cpu",
+ "systemInfo_display": "system_display",
+ "systemInfo_memory": "system_memory",
+ "webview": "tags/webview",
+ "webview_tag": "tags/webview"
}
diff --git a/chromium/chrome/common/extensions/docs/templates/public/extensions/redirects.json b/chromium/chrome/common/extensions/docs/templates/public/extensions/redirects.json
index 4f5e9a56971..700b73b91f5 100644
--- a/chromium/chrome/common/extensions/docs/templates/public/extensions/redirects.json
+++ b/chromium/chrome/common/extensions/docs/templates/public/extensions/redirects.json
@@ -1,11 +1,10 @@
{
- "": "index.html",
- "experimental.debugger.html": "debugger.html",
- "experimental_debugger.html": "debugger.html",
- "experimental.infobars.html": "infobars.html",
- "experimental_infobars.html": "infobars.html",
- "experimental.systemInfo_storage.html": "system_storage.html",
- "experimental_systemInfo_storage.html": "system_storage.html",
- "systemInfo_cpu.html": "system_cpu.html",
- "systemInfo_memory.html": "system_memory.html"
+ "experimental.debugger": "debugger",
+ "experimental_debugger": "debugger",
+ "experimental.infobars": "infobars",
+ "experimental_infobars": "infobars",
+ "experimental.systemInfo_storage": "system_storage",
+ "experimental_systemInfo_storage": "system_storage",
+ "systemInfo_cpu": "system_cpu",
+ "systemInfo_memory": "system_memory"
}
diff --git a/chromium/chrome/common/extensions/docs/templates/public/redirects.json b/chromium/chrome/common/extensions/docs/templates/public/redirects.json
index e5b0c4c0f7e..6c724a291fe 100644
--- a/chromium/chrome/common/extensions/docs/templates/public/redirects.json
+++ b/chromium/chrome/common/extensions/docs/templates/public/redirects.json
@@ -1,7 +1,4 @@
{
- "": "//developers.google.com/chrome",
- "apps.html": "/apps/about_apps.html",
- "apps": "/apps/about_apps.html",
- "extensions": "/extensions/index.html",
- "index.html": "//developers.google.com/chrome"
+ "": "/home",
+ "apps": "/apps/about_apps"
}