diff options
Diffstat (limited to 'chrome/common/extensions/api/extension_api.json')
-rw-r--r-- | chrome/common/extensions/api/extension_api.json | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index 60b9d1c..3aba800 100644 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -9114,118 +9114,6 @@ ] }, { - "namespace": "experimental.clipboard", - "nodoc": true, - "types": [ - { - "id": "mimeTypeEnum", - "type": "string", - "description": "MIME type of the data on the clipboard.", - "enum": ["text/plain", "text/html"] - }, - { - "id": "bufferEnum", - "type": "string", - "description": "Buffers available on the clipboard.", - "enum": ["standard", "selection"] - } - ], - "functions": [ - { - "name": "writeData", - "description": "Writes some plain text data to web clipboard.", - "type": "function", - "parameters": [ - { - "name": "mimeType", - "$ref": "mimeTypeEnum", - "description": "Type of data that will be written to the clipboard." - }, - { - "name": "buffer", - "$ref": "bufferEnum", - "description": "Clipboard to which data will be written. Currently only standard clipboard is supported." - }, - { - "name": "data", - "type": "string", - "description": "Data that will be writen to the clipboard." - }, - { - "name": "url", - "type": "string", - "description": "Type of data that will be written to the clipboard.", - "optional": true - } - ] - }, - { - "name": "readData", - "description": "Reads data that is currently on clipboard.", - "type": "function", - "parameters": [ - { - "name": "mimeType", - "$ref": "mimeTypeEnum", - "description": "Type of data that will be read from the clipboard." - }, - { - "name": "buffer", - "$ref": "bufferEnum", - "description": "Clipboard buffer from which data will be read." - }, - { - "name": "callback", - "description": "Callback that will be called when data is read from the clipboard.", - "type": "function", - "parameters": [ - { - "name": "callbackData", - "type": "object", - "properties": { - "data": { - "type": "string", - "description": "Data read from the clipboard." - }, - "url": { - "type": "string", - "description": "Url read from the clipboard.", - "optional": true - } - } - } - ] - } - ] - }, - { - "name": "getAvailableTypes", - "description": "Retrieves list of MIME types that support data currently on the clipboard buffer.", - "type": "function", - "parameters": [ - { - "name": "buffer", - "$ref": "bufferEnum", - "description": "Clipboard buffer whose available MIME types will be retrieved." - }, - { - "name": "callback", - "description": "Callback that will be called when the result is determined.", - "type": "function", - "parameters": [ - { - "name": "avaliableMimeTypes", - "description": "List of available MIME types.", - "type": "array", - "items": { "$ref": "mimeTypeEnum" } - } - ] - } - ] - } - ] - }, - { "namespace": "experimental.topSites", "nodoc": true, "types": [], |