OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "namespace": "extension", | 3 "namespace": "extension", |
4 "unprivileged": true, | 4 "unprivileged": true, |
5 "types": [ | 5 "types": [ |
6 { | 6 { |
7 "id": "MessageSender", | 7 "id": "MessageSender", |
8 "type": "object", | 8 "type": "object", |
9 "description": "An object containing information about the script contex
t that sent a message or request.", | 9 "description": "An object containing information about the script contex
t that sent a message or request.", |
10 "properties": { | 10 "properties": { |
(...skipping 2486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2497 { | 2497 { |
2498 "name": "createIncognitoTab", | 2498 "name": "createIncognitoTab", |
2499 "type": "function", | 2499 "type": "function", |
2500 "description": "Creates an incognito tab during internal testing. Succee
ds even if the extension is not enabled in incognito mode.", | 2500 "description": "Creates an incognito tab during internal testing. Succee
ds even if the extension is not enabled in incognito mode.", |
2501 "parameters": [ | 2501 "parameters": [ |
2502 {"type": "string", "name": "url"} | 2502 {"type": "string", "name": "url"} |
2503 ] | 2503 ] |
2504 } | 2504 } |
2505 ], | 2505 ], |
2506 "events": [] | 2506 "events": [] |
| 2507 }, |
| 2508 { |
| 2509 "namespace": "experimental.clipboard", |
| 2510 "types": [], |
| 2511 "functions": [ |
| 2512 { |
| 2513 "name": "executeCopy", |
| 2514 "type": "function", |
| 2515 "description": "Triggers a copy operation in the specified tab.", |
| 2516 "parameters": [ |
| 2517 {"type": "integer", "name": "tabId", "minimum": 0}, |
| 2518 {"type": "function", "name": "callback", "optional": true, "parameters
": []} |
| 2519 ] |
| 2520 }, |
| 2521 { |
| 2522 "name": "executeCut", |
| 2523 "type": "function", |
| 2524 "description": "Triggers a cut operation in the specified tab.", |
| 2525 "parameters": [ |
| 2526 {"type": "integer", "name": "tabId", "minimum": 0}, |
| 2527 {"type": "function", "name": "callback", "optional": true, "parameters
": []} |
| 2528 ] |
| 2529 }, |
| 2530 { |
| 2531 "name": "executePaste", |
| 2532 "type": "function", |
| 2533 "description": "Triggers a paste operation in the specified tab.", |
| 2534 "parameters": [ |
| 2535 {"type": "integer", "name": "tabId", "minimum": 0}, |
| 2536 {"type": "function", "name": "callback", "optional": true, "parameters
": []} |
| 2537 ] |
| 2538 } |
| 2539 ], |
| 2540 "events": [] |
2507 } | 2541 } |
2508 ] | 2542 ] |
OLD | NEW |