diff options
Diffstat (limited to 'chrome/common/extensions/api/extension_api.json')
-rwxr-xr-x | chrome/common/extensions/api/extension_api.json | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index 8925e81..b354018 100755 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -925,24 +925,24 @@ { "name": "executeScript", "type": "function", - "description": "", + "description": "Injects JavaScript code into a page. For details, see the <a href='content_scripts.html#pi'>programmatic injection</a> section of the content scripts doc.", "parameters": [ - {"type": "integer", "name": "tabId", "optional": true, "description": "The id of tab which run the script, default to selected tab of current window."}, + {"type": "integer", "name": "tabId", "optional": true, "description": "The ID of the tab in which to run the script; defaults to the selected tab of the current window."}, { "type": "object", "name": "details", - "description": "Details of the script to run. Either the code or file property must be set, but both may not be set at the same time.", + "description": "Details of the script to run. Either the code or the file property must be set, but both may not be set at the same time.", "properties": { "code": {"type": "string", "optional": true, "description": "JavaScript code to execute."}, "file": {"type": "string", "optional": true, "description": "JavaScript file to execute."}, - "allFrames": {"type": "boolean", "optional": true, "description": "If allFrames is true, this function injects script into all frames of current page. By default, it's false and only inject script into top main frame."} + "allFrames": {"type": "boolean", "optional": true, "description": "If allFrames is true, this function injects script into all frames of current page. By default, it's false and script is injected only into the top main frame."} } }, { "type": "function", "name": "callback", "optional": true, - "description": "When all scripts are executed, this callback is called.", + "description": "Called after all the JavaScript has been executed.", "parameters": [] } ] @@ -950,24 +950,24 @@ { "name": "insertCSS", "type": "function", - "description": "", + "description": "Injects CSS into a page. For details, see the <a href='content_scripts.html#pi'>programmatic injection</a> section of the content scripts doc.", "parameters": [ - {"type": "integer", "name": "tabId", "optional": true, "description": "The id of tab which run the script, default to selected tab of current window."}, + {"type": "integer", "name": "tabId", "optional": true, "description": "The ID of the tab in which to insert the CSS; defaults to the selected tab of the current window."}, { "type": "object", "name": "details", - "description": "Details of the css text to insert. Either the code or file property must be set, but both may not be set at the same time.", + "description": "Details of the CSS text to insert. Either the code or the file property must be set, but both may not be set at the same time.", "properties": { "code": {"type": "string", "optional": true, "description": "CSS code to be injected."}, "file": {"type": "string", "optional": true, "description": "CSS file to be injected."}, - "allFrames": {"type": "boolean", "optional": true, "description": "If allFrames is true, this function injects css text into all frames of current page. By default, it's false and only inject css text into top main frame."} + "allFrames": {"type": "boolean", "optional": true, "description": "If allFrames is true, this function injects CSS text into all frames of current page. By default, it's false and CSS is injected only into the top main frame."} } }, { "type": "function", "name": "callback", "optional": true, - "description": "When all css are inserted, this callback is called.", + "description": "Called when all the CSS has been inserted.", "parameters": [] } ] |