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

Unified Diff: extension/manifest.json

Issue 11092092: Support compiling templates in the browser. Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years, 2 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
« no previous file with comments | « extension/dart_proxy.js ('k') | lib/dwc.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extension/manifest.json
diff --git a/extension/manifest.json b/extension/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..e85522f04baa348610b612f89045fc4b02239aa2
--- /dev/null
+++ b/extension/manifest.json
@@ -0,0 +1,21 @@
+{
+ "name": "Dart Web Components",
+ "version": "1.0",
+ "description": "An implementation for Dart Web Components. Requires the experimental webRequest chrome extension API.",
+ "permissions": ["declarativeWebRequest", "http://*/*", "https://*/*"],
+ "background": {
+ "page": "background.html"
+ },
+ "content_scripts": [
+ {
+ "matches": ["<all_urls>"],
+ "js": ["content_script.js"],
+ "run_at": "document_start"
+ }
+ ],
+ "web_accessible_resources": [
+ "dwc/dart.js"
+ ],
+ "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
+ "manifest_version": 2
+}
« no previous file with comments | « extension/dart_proxy.js ('k') | lib/dwc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698