Last active
July 26, 2017 14:12
-
-
Save autonome/d3f8bf4f3c8ea8518fa44feea5e3390e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"namespace": "showonlythesetabs", | |
"description": "WebExtension API to show only some tabs on the tab strip.", | |
"permissions": ["experiments.showonlythesetabs"], | |
"types": [ | |
{ | |
"id": "Tab", | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer", | |
"minimum": -1, | |
"optional": true, | |
"description": "The ID of the tab." | |
} | |
} | |
} | |
], | |
"functions": [ | |
{ | |
"name": "showOnlyTheseTabs", | |
"type": "function", | |
"description": "Returns nothing.", | |
"async": true, | |
"parameters": [ | |
{ | |
"name": "tabs", | |
"type": "array", | |
"items": { "$ref": "Tab" } | |
} | |
] | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment