Index: chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json |
diff --git a/chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json b/chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json |
index fb71b39bb8336b18b3b1fbbe25f7e28649a723cb..c480355f53a19e89e091fda59430294612a4155e 100644 |
--- a/chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json |
+++ b/chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json |
@@ -1,17 +1,15 @@ |
{ |
- "name": "File System Provider API Example", |
+ "name": "File System Provider API Extension Example", |
"version": "0.1", |
"manifest_version": 2, |
"description": |
- "Demonstrate features of the API like mounting, listing directories, etc", |
+ "Demonstrate features of the API like mounting, listing directories, etc for extensions.", |
"permissions": [ |
"fileSystemProvider" |
], |
- "app": { |
- "background": { |
- "scripts": [ |
- "background.js" |
- ] |
- } |
+ "background": { |
+ "scripts": [ |
+ "background.js" |
+ ] |
} |
} |