├── .editorconfig ├── LICENSE.md ├── Makefile ├── README.md ├── dist ├── github-first-commit.user.js ├── github-my-issues.user.js ├── google-dwimages.user.js ├── imdb-full-summary.user.js ├── more-tomatoes.user.js ├── twitter-direct.user.js └── twitter-linkify-trends.user.js ├── package.json ├── src ├── amazon-international-links.user.js ├── github-first-commit.user.ts ├── github-my-issues.user.ts ├── google-dwimages.user.ts ├── hacker_news_date_tooltips.user.js ├── highlight-hacker-news.user.js ├── highlight_digg.user.js ├── highlight_echo_js.user.js ├── highlight_lobsters.user.js ├── highlight_reddit.user.js ├── imdb-full-summary.user.ts ├── imdb-tomatoes.user.js ├── iso_8601_dates.user.js ├── last_picture_show.user.js ├── lib │ ├── observer.ts │ └── util.ts ├── more-tomatoes.user.ts ├── pagerize_amazon.user.js ├── pagerize_ars_technica.user.js ├── pagerize_ebay.user.js ├── pagerize_metafilter.user.js ├── reddit_toggle_custom_css.user.js ├── twitter-direct.user.ts ├── twitter-direct │ ├── replacer.ts │ ├── twitter-direct-cli.ts │ └── util.ts ├── twitter-linkify-trends.user.ts └── twitter-zoom-cursor.css ├── tsconfig.json └── types ├── gm-compat.d.ts ├── imdb-tomatoes.user.d.ts ├── jquery-highlighter.d.ts └── jquery-onmutate.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/README.md -------------------------------------------------------------------------------- /dist/github-first-commit.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/dist/github-first-commit.user.js -------------------------------------------------------------------------------- /dist/github-my-issues.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/dist/github-my-issues.user.js -------------------------------------------------------------------------------- /dist/google-dwimages.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/dist/google-dwimages.user.js -------------------------------------------------------------------------------- /dist/imdb-full-summary.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/dist/imdb-full-summary.user.js -------------------------------------------------------------------------------- /dist/more-tomatoes.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/dist/more-tomatoes.user.js -------------------------------------------------------------------------------- /dist/twitter-direct.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/dist/twitter-direct.user.js -------------------------------------------------------------------------------- /dist/twitter-linkify-trends.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/dist/twitter-linkify-trends.user.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/package.json -------------------------------------------------------------------------------- /src/amazon-international-links.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/amazon-international-links.user.js -------------------------------------------------------------------------------- /src/github-first-commit.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/github-first-commit.user.ts -------------------------------------------------------------------------------- /src/github-my-issues.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/github-my-issues.user.ts -------------------------------------------------------------------------------- /src/google-dwimages.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/google-dwimages.user.ts -------------------------------------------------------------------------------- /src/hacker_news_date_tooltips.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/hacker_news_date_tooltips.user.js -------------------------------------------------------------------------------- /src/highlight-hacker-news.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/highlight-hacker-news.user.js -------------------------------------------------------------------------------- /src/highlight_digg.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/highlight_digg.user.js -------------------------------------------------------------------------------- /src/highlight_echo_js.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/highlight_echo_js.user.js -------------------------------------------------------------------------------- /src/highlight_lobsters.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/highlight_lobsters.user.js -------------------------------------------------------------------------------- /src/highlight_reddit.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/highlight_reddit.user.js -------------------------------------------------------------------------------- /src/imdb-full-summary.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/imdb-full-summary.user.ts -------------------------------------------------------------------------------- /src/imdb-tomatoes.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/imdb-tomatoes.user.js -------------------------------------------------------------------------------- /src/iso_8601_dates.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/iso_8601_dates.user.js -------------------------------------------------------------------------------- /src/last_picture_show.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/last_picture_show.user.js -------------------------------------------------------------------------------- /src/lib/observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/lib/observer.ts -------------------------------------------------------------------------------- /src/lib/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/lib/util.ts -------------------------------------------------------------------------------- /src/more-tomatoes.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/more-tomatoes.user.ts -------------------------------------------------------------------------------- /src/pagerize_amazon.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/pagerize_amazon.user.js -------------------------------------------------------------------------------- /src/pagerize_ars_technica.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/pagerize_ars_technica.user.js -------------------------------------------------------------------------------- /src/pagerize_ebay.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/pagerize_ebay.user.js -------------------------------------------------------------------------------- /src/pagerize_metafilter.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/pagerize_metafilter.user.js -------------------------------------------------------------------------------- /src/reddit_toggle_custom_css.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/reddit_toggle_custom_css.user.js -------------------------------------------------------------------------------- /src/twitter-direct.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/twitter-direct.user.ts -------------------------------------------------------------------------------- /src/twitter-direct/replacer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/twitter-direct/replacer.ts -------------------------------------------------------------------------------- /src/twitter-direct/twitter-direct-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/twitter-direct/twitter-direct-cli.ts -------------------------------------------------------------------------------- /src/twitter-direct/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/twitter-direct/util.ts -------------------------------------------------------------------------------- /src/twitter-linkify-trends.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/twitter-linkify-trends.user.ts -------------------------------------------------------------------------------- /src/twitter-zoom-cursor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/src/twitter-zoom-cursor.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/gm-compat.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/types/gm-compat.d.ts -------------------------------------------------------------------------------- /types/imdb-tomatoes.user.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/types/imdb-tomatoes.user.d.ts -------------------------------------------------------------------------------- /types/jquery-highlighter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/types/jquery-highlighter.d.ts -------------------------------------------------------------------------------- /types/jquery-onmutate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/userscripts/HEAD/types/jquery-onmutate.d.ts --------------------------------------------------------------------------------