3. Implementation of the command in the [View (V)] menu 1. Implementation of the "Refresh" command [Format]: location.reload() or history.go(0) [Description] Reopen this page in the browser. [Example] Add between : Refresh or Add:Refresh 2. Implementation of the 〖Source File〗 command [Format]:location.replace(" view-source:" location) [Description] View the source code of this web page. [Example] Add between : View source file 3. Implementation of the 〖Full Screen Display〗 command [Format]:window.open(document.location,"url","fullscreen") [Description] Display this page in full screen . [Example] Add between :
5. [Tools (T) 】Implementation of commands in the menu Implementation of 〖internet options〗 command [Format]: window.external.showBrowserUI("PrivacySettings",null) [Description] Open the internet options dialog box . [Example] Add between : internet option
6. Implementation of commands in [Toolbar] 1. Implementation of [Forward] command [Format] history.go(1 ) or history.forward() [Explanation] The browser opens the next page. [Example] Add: Forward Or join:Forward 2 , Implementation of the [Back] command [Format]: history.go(-1) or history.back() [Explanation] The browser returns to the previous browsed page. [Example] Add between : Back Or add:Back 3. Implementation of 〖Refresh〗 [Format]:document.reload() Or history.go(0) [Instructions] Reopen this page in the browser. [Example] Add between : Refresh or Add:Refresh
7. Implementation of other commands 〖Timed shutdown Implementation of this window〗 command [Format]: settimeout(window.close(), closing time) [Explanation] This window will be closed. [Example] Add between : Close this window in 3 seconds