feat: Add chrome.goBack and chrome.goForward (#244)
Fixes #243 APIs added in Chrome 72: - https://developer.chrome.com/extensions/tabs#method-goBack - https://developer.chrome.com/extensions/tabs#method-goForward
This commit is contained in:
parent
8c7be46873
commit
55503f4c93
|
@ -558,6 +558,14 @@
|
||||||
"minArgs": 0,
|
"minArgs": 0,
|
||||||
"maxArgs": 1
|
"maxArgs": 1
|
||||||
},
|
},
|
||||||
|
"goBack": {
|
||||||
|
"minArgs": 0,
|
||||||
|
"maxArgs": 1
|
||||||
|
},
|
||||||
|
"goForward": {
|
||||||
|
"minArgs": 0,
|
||||||
|
"maxArgs": 1
|
||||||
|
},
|
||||||
"highlight": {
|
"highlight": {
|
||||||
"minArgs": 1,
|
"minArgs": 1,
|
||||||
"maxArgs": 1
|
"maxArgs": 1
|
||||||
|
|
Loading…
Reference in New Issue