-
Download & install YTDLnis
-
Open YTDLnis, go to
More > Command Templates > New template
, fill with :- Title:
translated title
- Command:
--extractor-args "youtube:lang=en"
, replaceen
with your language code - enable
Extra Command
- tap
Create
- Title:
-
Go to
More > Settings > Downloads
, enableQuick Download
Github Desktop Portable:
Git tutorial for beginners
Create a new repo on github
ㅤ- Login to github:
gh auth login
- Set global options (name & email):
git config --global user.name ""
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
/** | |
* Alternative to deprecated window.getMatchedCSSRules() | |
* | |
* Usage: getMatchedCSSRules(document.getElementsByClassName('my-element')[0]).cssText; | |
*/ | |
if (typeof window.getMatchedCSSRules !== 'function') { | |
var ELEMENT_RE = /[\w-]+/g, | |
ID_RE = /#[\w-]+/g, | |
CLASS_RE = /\.[\w-]+/g, | |
ATTR_RE = /\[[^\]]+\]/g, |