diff options
Diffstat (limited to 'chrome/browser')
-rwxr-xr-x | chrome/browser/resources/extensions_ui.html | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/chrome/browser/resources/extensions_ui.html b/chrome/browser/resources/extensions_ui.html index e719f91..14c8b9e 100755 --- a/chrome/browser/resources/extensions_ui.html +++ b/chrome/browser/resources/extensions_ui.html @@ -17,10 +17,12 @@ var extensionDataFormat = { "content_scripts": [ { "js": ["script1_file1.js", "script1_file2.js"], + "css": ["script1_file1.css", "script1_file2.css"], "matches": ["http://*/*", "http://other.com/*"] }, { "js": ["script2_file1.js", "script2_file2.js"], + "css": ["script2_file1.css", "script2_file2.css"], "matches": ["http://*/*", "http://other.com/*"] } ] @@ -32,10 +34,12 @@ var extensionDataFormat = { "content_scripts": [ { "js": ["script1_file1.js", "script1_file2.js"], + "css": ["script1_file1.css", "script1_file2.css"], "matches": ["http://*/*", "http://other.com/*"] }, { "js": ["script2_file1.js", "script2_file2.js"], + "css": ["script2_file1.css", "script2_file2.css"], "matches": ["http://*/*", "http://other.com/*"] } ] @@ -199,17 +203,25 @@ th.enabled { </thead> <tbody> <tr> - <td>JavaScript Files</td> + <td>URL Match Patterns</td> <td> - <span jsselect="js" + <span jsselect="matches" jscontent="(($index > 0) ? ', ' : '') + $this"> </span> </td> </tr> - <tr> - <td>URL Match Patterns</td> + <tr> + <td>CSS Files</td> <td> - <span jsselect="matches" + <span jsselect="css" + jscontent="(($index > 0) ? ', ' : '') + $this"> + </span> + </td> + </tr> + <tr> + <td>JavaScript Files</td> + <td> + <span jsselect="js" jscontent="(($index > 0) ? ', ' : '') + $this"> </span> </td> |