This file contains 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
PK ! hᰚ� � creality_ender5plus_face_shields[general] | |
version = 4 | |
name = Face shields | |
definition = creality_base | |
[metadata] | |
setting_version = 11 | |
quality_type = standard | |
type = quality_changes |
This file contains 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
code --install-extension Tyriar.lorem-ipsum | |
code --install-extension abusaidm.html-snippets | |
code --install-extension anseki.vscode-color | |
code --install-extension christian-kohler.npm-intellisense | |
code --install-extension christian-kohler.path-intellisense | |
code --install-extension CoenraadS.bracket-pair-colorizer | |
code --install-extension Dart-Code.dart-code | |
code --install-extension Dart-Code.flutter | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension DotJoshJohnson.xml |
This file contains 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
var aTags = document.querySelectorAll('[target]'); | |
var att = document.createAttribute('rel'); | |
att.value = 'noopener noreferrer'; | |
aTags.forEach(function (tag) { | |
var nodeClone = att.cloneNode(true); | |
tag.setAttributeNode(nodeClone); | |
}); |