TODO: Add description of your bookmarklet here.
To add this bookmarklet to your browser, instructions for Chrome:
- Right-click your Bookmarks Bar.
- Click "Add Page..."
- For "Name", type "TODO: Title here".
- For "URL", copy-paste the below:
TODO: Add description of your bookmarklet here.
To add this bookmarklet to your browser, instructions for Chrome:
Trello bookmarklet to (re-)calculate sums of "points" from cards.
"Points" can be anything numeric (no units). Just prefix each card you want to count with the points in parentheses. E.g. (3) Investigate options
.
It's okay for cards to not have points. They just won't be included in the sums.
The sum of points for each list will get added to the list title in the same way as cards. E.g. (17) To Do
. Any existing sum will get updated.
The list's actual title (e.g. if you refresh) will not be updated; only the "display" title at that moment will be.
type StaticValueType = string | number | boolean; | |
type StringValueType = 'string' | 'number' | 'boolean'; | |
function parse(val: string): 'string'; | |
function parse(val: number): 'number'; | |
function parse(val: boolean): 'boolean'; | |
function parse<T extends StringValueType>(val: null, valType: T): T; | |
function parse(val: StaticValueType | null, valType?: StringValueType): StringValueType { | |
if (val == null) { | |
if (valType == null) { |
{ | |
"name": "mix-archiver", | |
"version": "1.0.0", | |
"description": "Scrape and archive a FiftyThree Mix (Paper Public Stream) profile.", | |
"bin": "scrape.js", | |
"author": "Aseem Kishore <[email protected]>", | |
"license": "MIT", | |
"dependencies": {}, | |
"devDependencies": { | |
"superagent": "^3.6.0" |