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

Side by Side Diff: chrome/common/extensions/api/tabs.json

Issue 226663003: Allow content script insertion on about:-URLs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move GetEffectiveDocumentURL to ScriptContext Created 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 { 6 {
7 "namespace": "tabs", 7 "namespace": "tabs",
8 "description": "Use the <code>chrome.tabs</code> API to interact with the br owser's tab system. You can use this API to create, modify, and rearrange tabs i n the browser.", 8 "description": "Use the <code>chrome.tabs</code> API to interact with the br owser's tab system. You can use this API to create, modify, and rearrange tabs i n the browser.",
9 "types": [ 9 "types": [
10 { 10 {
(...skipping 20 matching lines...) Expand all
31 } 31 }
32 }, 32 },
33 { 33 {
34 "id": "InjectDetails", 34 "id": "InjectDetails",
35 "type": "object", 35 "type": "object",
36 "description": "Details of the script or CSS to inject. Either the code or the file property must be set, but both may not be set at the same time.", 36 "description": "Details of the script or CSS to inject. Either the code or the file property must be set, but both may not be set at the same time.",
37 "properties": { 37 "properties": {
38 "code": {"type": "string", "optional": true, "description": "JavaScrip t or CSS code to inject.<br><br><b>Warning:</b><br>Be careful using the <code>co de</code> parameter. Incorrect use of it may open your extension to <a href=\"ht tps://en.wikipedia.org/wiki/Cross-site_scripting\">cross site scripting</a> atta cks."}, 38 "code": {"type": "string", "optional": true, "description": "JavaScrip t or CSS code to inject.<br><br><b>Warning:</b><br>Be careful using the <code>co de</code> parameter. Incorrect use of it may open your extension to <a href=\"ht tps://en.wikipedia.org/wiki/Cross-site_scripting\">cross site scripting</a> atta cks."},
39 "file": {"type": "string", "optional": true, "description": "JavaScrip t or CSS file to inject."}, 39 "file": {"type": "string", "optional": true, "description": "JavaScrip t or CSS file to inject."},
40 "allFrames": {"type": "boolean", "optional": true, "description": "If allFrames is <code>true</code>, implies that the JavaScript or CSS should be inj ected into all frames of current page. By default, it's <code>false</code> and i s only injected into the top frame."}, 40 "allFrames": {"type": "boolean", "optional": true, "description": "If allFrames is <code>true</code>, implies that the JavaScript or CSS should be inj ected into all frames of current page. By default, it's <code>false</code> and i s only injected into the top frame."},
41 "matchAboutBlank": {"type": "boolean", "optional": true, "description" : "If matchAboutBlank is true, then the code is also injected in about:blank and about:srcdoc frames if your extension has access to its parent document. Code c annot be inserted in top-level about:-frames. By default it is <code>false</code >."},
41 "runAt": { 42 "runAt": {
42 "type": "string", 43 "type": "string",
43 "optional": true, 44 "optional": true,
44 "enum": ["document_start", "document_end", "document_idle"], 45 "enum": ["document_start", "document_end", "document_idle"],
45 "description": "The soonest that the JavaScript or CSS will be injec ted into the tab. Defaults to \"document_idle\"." 46 "description": "The soonest that the JavaScript or CSS will be injec ted into the tab. Defaults to \"document_idle\"."
46 } 47 }
47 } 48 }
48 } 49 }
49 ], 50 ],
50 "functions": [ 51 "functions": [
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 "type": "function", 918 "type": "function",
918 "description": "Fired when a tab is replaced with another tab due to pre rendering or instant.", 919 "description": "Fired when a tab is replaced with another tab due to pre rendering or instant.",
919 "parameters": [ 920 "parameters": [
920 {"type": "integer", "name": "addedTabId", "minimum": 0}, 921 {"type": "integer", "name": "addedTabId", "minimum": 0},
921 {"type": "integer", "name": "removedTabId", "minimum": 0} 922 {"type": "integer", "name": "removedTabId", "minimum": 0}
922 ] 923 ]
923 } 924 }
924 ] 925 ]
925 } 926 }
926 ] 927 ]
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/docs/templates/articles/content_scripts.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698