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
| # https://support.brave.com/hc/en-us/articles/360039248271-Group-Policy | |
| defaults write com.brave.Browser TorDisabled -boolean true | |
| defaults write com.brave.Browser BraveRewardsDisabled -boolean true | |
| defaults write com.brave.Browser BraveWalletDisabled -boolean true | |
| defaults write com.brave.Browser BraveVPNDisabled -boolean true | |
| defaults write com.brave.Browser BraveAIChatEnabled -boolean false |
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
| let obj = { | |
| data: { | |
| a: 0 | |
| }, | |
| computed: { | |
| b: function () { | |
| console.log('a changed! Now a is ', this.a) | |
| return this.a + 1 | |
| } | |
| } |
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
| const jszipDom = document.createElement("script"); | |
| jszipDom.setAttribute("src", "https://cdn.bootcss.com/jszip/3.1.5/jszip.js"); | |
| const jszipUtilsDom = document.createElement("script"); | |
| jszipUtilsDom.setAttribute("src", "https://cdn.bootcss.com/jszip-utils/0.0.2/jszip-utils.min.js"); | |
| const fileSaverDom = document.createElement("script"); | |
| fileSaverDom.setAttribute("src", "https://cdn.bootcss.com/FileSaver.js/2014-11-29/FileSaver.js"); | |
| document.body.appendChild(jszipDom); |