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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « extension/dart_proxy.js ('k') | lib/dwc.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "name": "Dart Web Components",
3 "version": "1.0",
4 "description": "An implementation for Dart Web Components. Requires the experi mental webRequest chrome extension API.",
5 "permissions": ["declarativeWebRequest", "http://*/*", "https://*/*"],
6 "background": {
7 "page": "background.html"
8 },
9 "content_scripts": [
10 {
11 "matches": ["<all_urls>"],
12 "js": ["content_script.js"],
13 "run_at": "document_start"
14 }
15 ],
16 "web_accessible_resources": [
17 "dwc/dart.js"
18 ],
19 "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' ",
20 "manifest_version": 2
21 }
OLDNEW
« 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