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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2

Issue 2002693002: Automation API should use transforms for iframe coordinates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | chrome/renderer/extensions/automation_internal_custom_bindings.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 {%if key is defined %} 2 {%if key is defined %}
3 "key": "{{key}}", 3 "key": "{{key}}",
4 {% endif %} 4 {% endif %}
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "name": "__MSG_CHROMEVOX_NAME__", 6 "name": "__MSG_CHROMEVOX_NAME__",
7 "version": "{{set_version}}", 7 "version": "{{set_version}}",
8 "description": "__MSG_CHROMEVOX_DESCRIPTION__", 8 "description": "__MSG_CHROMEVOX_DESCRIPTION__",
9 {% if is_guest_manifest == '1' %} 9 {% if is_guest_manifest == '1' %}
10 "incognito": "split", 10 "incognito": "split",
(...skipping 14 matching lines...) Expand all
25 "tts", 25 "tts",
26 "virtualKeyboardPrivate", 26 "virtualKeyboardPrivate",
27 "<all_urls>" 27 "<all_urls>"
28 ], 28 ],
29 "content_scripts": [ 29 "content_scripts": [
30 { 30 {
31 "matches": [ "<all_urls>" ], 31 "matches": [ "<all_urls>" ],
32 "exclude_globs": [ 32 "exclude_globs": [
33 "chrome-extension://*", 33 "chrome-extension://*",
34 "chrome://*", 34 "chrome://*",
35 "https://accounts.google.com/embedded/setup/chromeos*" 35 "https://accounts.google.com/embedded/setup/chromeos*",
36 "https://talkgadget.google.com/hangouts*"
dmazzoni 2016/05/23 23:13:40 Ignore this, this was merged in from the other cha
36 ], 37 ],
37 "all_frames": true, 38 "all_frames": true,
38 "js": [ 39 "js": [
39 {% if is_js_compressed == '1' %} 40 {% if is_js_compressed == '1' %}
40 "chromeVoxChromePageScript.js", 41 "chromeVoxChromePageScript.js",
41 "chromeVox2ChromePageScript.js" 42 "chromeVox2ChromePageScript.js"
42 {% else %} 43 {% else %}
43 "closure/closure_preinit.js", 44 "closure/closure_preinit.js",
44 "closure/base.js", 45 "closure/base.js",
45 "deps.js", 46 "deps.js",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 } 92 }
92 }, 93 },
93 "options_page": "chromevox/background/options.html", 94 "options_page": "chromevox/background/options.html",
94 "default_locale": "en", 95 "default_locale": "en",
95 "icons": { 96 "icons": {
96 "16": "images/chromevox-16.png", 97 "16": "images/chromevox-16.png",
97 "48": "images/chromevox-48.png", 98 "48": "images/chromevox-48.png",
98 "128": "images/chromevox-128.png" 99 "128": "images/chromevox-128.png"
99 } 100 }
100 } 101 }
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/extensions/automation_internal_custom_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698