mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-18 12:08:59 +08:00
chrome.runtime.openOptionsPage
This commit is contained in:
@@ -249,3 +249,12 @@ function contentSettings() {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// https://developer.chrome.com/extensions/runtime#method-openOptionsPage
|
||||
function testOptionsPage() {
|
||||
chrome.runtime.openOptionsPage();
|
||||
chrome.runtime.openOptionsPage(function() {
|
||||
// Do a thing ...
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
1
chrome/chrome.d.ts
vendored
1
chrome/chrome.d.ts
vendored
@@ -1649,6 +1649,7 @@ declare module chrome.runtime {
|
||||
export function getPackageDirectoryEntry(callback: (directoryEntry: any) => void): void;
|
||||
export function getPlatformInfo(callback: (platformInfo: PlatformInfo) => void): void;
|
||||
export function getURL(path: string): string;
|
||||
export function openOptionsPage(callback?: () => void): void;
|
||||
export function reload(): void;
|
||||
export function requestUpdateCheck(callback: (status: string, details?: UpdateCheckDetails) => void): void;
|
||||
export function restart(): void;
|
||||
|
||||
Reference in New Issue
Block a user