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

Unified Diff: chrome/browser/resources/video_player/manifest.json

Issue 196383030: [VideoPlayer] dedicated video player app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add the script file to the whitelist. Created 6 years, 9 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/browser/resources/video_player/manifest.json
diff --git a/chrome/browser/resources/video_player/manifest.json b/chrome/browser/resources/video_player/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..fda4aabda8895aca63f0e7b4236a4af95f290530
--- /dev/null
+++ b/chrome/browser/resources/video_player/manifest.json
@@ -0,0 +1,39 @@
+{
+ // chrome-extension://jcgeabjmjgoblfofpppfkcoakmfobdko/
+ "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw0/gRbJc545iEGRZs20Rl/HtrSUp8H3gJd4Y6hCe0CG1xQiJhZ5nc8qZyxa96gMxRAKBq54S6sjVVtV6uS70oU6FvrvwItByYkkqr4ZE7eMJKwMqnGItxWbh6KBodf89lpKoIy6MtYTqubBhXB/IQBZsXah90tXwRzaaJNWw+2BBRIhcPsH3ng+wgN7rwFxo4HIv9ZpqkYlx90rwkfjOmKPPnSXyXFIBJfmqfdbd8PLtcxzzOTE+vxwoXZuYWrthKm4uKfNqXIYns74sSJlqyKfctuR+nQdNh8uePv0e+/Ul3wER1/jIXULLjfyoaklyDs+ak3SDf+xWScJ+0LJ0AwIDAQAB",
+ "manifest_version": 2,
+ "name": "Video Player",
+ "version": "1.0",
+ "description": "Video Player",
+ "display_in_launcher": false,
+ "icons": {
+ "16": "images/100/icon.png",
+ "32": "images/200/icon.png"
+ },
+ "permissions": [
+ "fileSystem",
+ "fileBrowserPrivate",
+ "fullscreen",
+ "mediaPlayerPrivate",
+ "storage",
+ "chrome://theme/"
+ ],
+ "file_handlers": {
+ "video": {
+ "types": [
+ "video/*"
+ ],
+ // TODO(yoshiki): localize this.
+ // TODO(yoshiki): change the text after removing the emdebed player.
+ "title": "Watch in VideoPlayer.app"
+ }
+ },
+ "app": {
+ "background": {
+ "scripts": [
+ "js/background.js"
+ ]
+ },
+ "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' chrome://theme data:; media-src 'self'; object-src 'self'"
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698