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

Unified Diff: chrome/common/extensions/api/management.json

Issue 219213007: Remove .html extension from links (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/management.json
diff --git a/chrome/common/extensions/api/management.json b/chrome/common/extensions/api/management.json
index d394004534fc3767317e0a4a055efb813ddf4584..50a44155e5486098f8183fa93a9c816d23da4212 100644
--- a/chrome/common/extensions/api/management.json
+++ b/chrome/common/extensions/api/management.json
@@ -5,7 +5,7 @@
[
{
"namespace":"management",
- "description": "The <code>chrome.management</code> API provides ways to manage the list of extensions/apps that are installed and running. It is particularly useful for extensions that <a href='override.html'>override</a> the built-in New Tab page.",
+ "description": "The <code>chrome.management</code> API provides ways to manage the list of extensions/apps that are installed and running. It is particularly useful for extensions that <a href='override'>override</a> the built-in New Tab page.",
"types": [
{
"id": "IconInfo",
@@ -38,7 +38,7 @@
"type": "string"
},
"version": {
- "description": "The <a href='manifest/version.html'>version</a> of this extension, app, or theme.",
+ "description": "The <a href='manifest/version'>version</a> of this extension, app, or theme.",
"type": "string"
},
"mayDisable": {
@@ -89,7 +89,7 @@
"type": "string"
},
"icons": {
- "description": "A list of icon information. Note that this just reflects what was declared in the manifest, and the actual image at that url may be larger or smaller than what was declared, so you might consider using explicit width and height attributes on img tags referencing these images. See the <a href='manifest/icons.html'>manifest documentation on icons</a> for more details.",
+ "description": "A list of icon information. Note that this just reflects what was declared in the manifest, and the actual image at that url may be larger or smaller than what was declared, so you might consider using explicit width and height attributes on img tags referencing these images. See the <a href='manifest/icons'>manifest documentation on icons</a> for more details.",
"type": "array",
"optional": true,
"items": {
@@ -163,7 +163,7 @@
},
{
"name": "getPermissionWarningsById",
- "description": "Returns a list of <a href='permission_warnings.html'>permission warnings</a> for the given extension id.",
+ "description": "Returns a list of <a href='permission_warnings'>permission warnings</a> for the given extension id.",
"parameters": [
{ "name": "id",
"type": "string",
@@ -185,7 +185,7 @@
},
{
"name": "getPermissionWarningsByManifest",
- "description": "Returns a list of <a href='permission_warnings.html'>permission warnings</a> for the given extension manifest string. Note: This function can be used without requesting the 'management' permission in the manifest.",
+ "description": "Returns a list of <a href='permission_warnings'>permission warnings</a> for the given extension manifest string. Note: This function can be used without requesting the 'management' permission in the manifest.",
"parameters": [
{
"name": "manifestStr",

Powered by Google App Engine
This is Rietveld 408576698