├── .gitignore ├── .jshintrc ├── Chrome ├── .jshintrc ├── icon128.png ├── icon16.png ├── icon48.png ├── manifest.json └── res │ └── load_options.js ├── Firefox ├── icon.png ├── lib │ └── main.js └── package.json ├── LICENSE.md ├── Privacy Policy.md ├── README.md ├── Safari.safariextension ├── .jshintrc ├── Icon.png ├── Info.plist └── Settings.plist ├── TypeScript ├── APIKeys.ts ├── Application.ts ├── Comment.ts ├── CommentField.ts ├── CommentSection.ts ├── CommentThread.ts ├── ErrorScreen.ts ├── HttpRequest.ts ├── LoadMore.ts ├── LoadingScreen.ts ├── LocalisationManager.ts ├── Migration.ts ├── Options │ ├── Options.ts │ └── Safari.ts ├── Preferences.ts ├── RedditAPI │ ├── Comment.ts │ ├── EditComment.ts │ ├── RedditRequest.ts │ ├── Report.ts │ ├── Save.ts │ ├── Username.ts │ └── Vote.ts ├── Utilities.ts ├── index.ts ├── tsconfig.json ├── tsd.json └── typings │ ├── chrome │ └── chrome.d.ts │ ├── es5-compatibility.ts │ ├── es6-promise.d.ts │ ├── firefox │ └── firefox.d.ts │ ├── handlebars.d.ts │ ├── he.d.ts │ ├── safari │ └── safari.d.ts │ └── snuownd.d.ts ├── _locales ├── en-US │ └── messages.json ├── en │ └── messages.json ├── es │ └── messages.json ├── fr │ └── messages.json └── no │ └── messages.json ├── jsconfig.json ├── lib ├── handlebars-v3.0.3.js └── snuownd.js ├── make.sh ├── options.html ├── reload.scpt ├── res ├── bourbon │ ├── _bourbon-deprecated-upcoming.scss │ ├── _bourbon.scss │ ├── addons │ │ ├── _button.scss │ │ ├── _clearfix.scss │ │ ├── _directional-values.scss │ │ ├── _ellipsis.scss │ │ ├── _font-family.scss │ │ ├── _hide-text.scss │ │ ├── _html5-input-types.scss │ │ ├── _position.scss │ │ ├── _prefixer.scss │ │ ├── _retina-image.scss │ │ ├── _size.scss │ │ ├── _timing-functions.scss │ │ ├── _triangle.scss │ │ └── _word-wrap.scss │ ├── css3 │ │ ├── _animation.scss │ │ ├── _appearance.scss │ │ ├── _backface-visibility.scss │ │ ├── _background-image.scss │ │ ├── _background.scss │ │ ├── _border-image.scss │ │ ├── _border-radius.scss │ │ ├── _box-sizing.scss │ │ ├── _calc.scss │ │ ├── _columns.scss │ │ ├── _filter.scss │ │ ├── _flex-box.scss │ │ ├── _font-face.scss │ │ ├── _font-feature-settings.scss │ │ ├── _hidpi-media-query.scss │ │ ├── _hyphens.scss │ │ ├── _image-rendering.scss │ │ ├── _keyframes.scss │ │ ├── _linear-gradient.scss │ │ ├── _perspective.scss │ │ ├── _placeholder.scss │ │ ├── _radial-gradient.scss │ │ ├── _transform.scss │ │ ├── _transition.scss │ │ └── _user-select.scss │ ├── functions │ │ ├── _assign.scss │ │ ├── _color-lightness.scss │ │ ├── _flex-grid.scss │ │ ├── _golden-ratio.scss │ │ ├── _grid-width.scss │ │ ├── _modular-scale.scss │ │ ├── _px-to-em.scss │ │ ├── _px-to-rem.scss │ │ ├── _strip-units.scss │ │ ├── _tint-shade.scss │ │ ├── _transition-property-name.scss │ │ └── _unpack.scss │ ├── helpers │ │ ├── _convert-units.scss │ │ ├── _gradient-positions-parser.scss │ │ ├── _is-num.scss │ │ ├── _linear-angle-parser.scss │ │ ├── _linear-gradient-parser.scss │ │ ├── _linear-positions-parser.scss │ │ ├── _linear-side-corner-parser.scss │ │ ├── _radial-arg-parser.scss │ │ ├── _radial-gradient-parser.scss │ │ ├── _radial-positions-parser.scss │ │ ├── _render-gradients.scss │ │ ├── _shape-size-stripper.scss │ │ └── _str-to-num.scss │ └── settings │ │ ├── _prefixer.scss │ │ └── _px-to-em.scss ├── icon128.png ├── options.css ├── options.css.map ├── options.scss ├── redditblocked.svg ├── redditbroken.svg ├── redditoverload.svg ├── style.scss └── templates.html └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/.jshintrc -------------------------------------------------------------------------------- /Chrome/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Chrome/.jshintrc -------------------------------------------------------------------------------- /Chrome/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Chrome/icon128.png -------------------------------------------------------------------------------- /Chrome/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Chrome/icon16.png -------------------------------------------------------------------------------- /Chrome/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Chrome/icon48.png -------------------------------------------------------------------------------- /Chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Chrome/manifest.json -------------------------------------------------------------------------------- /Chrome/res/load_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Chrome/res/load_options.js -------------------------------------------------------------------------------- /Firefox/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Firefox/icon.png -------------------------------------------------------------------------------- /Firefox/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Firefox/lib/main.js -------------------------------------------------------------------------------- /Firefox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Firefox/package.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Privacy Policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Privacy Policy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/README.md -------------------------------------------------------------------------------- /Safari.safariextension/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Safari.safariextension/.jshintrc -------------------------------------------------------------------------------- /Safari.safariextension/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Safari.safariextension/Icon.png -------------------------------------------------------------------------------- /Safari.safariextension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Safari.safariextension/Info.plist -------------------------------------------------------------------------------- /Safari.safariextension/Settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/Safari.safariextension/Settings.plist -------------------------------------------------------------------------------- /TypeScript/APIKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/APIKeys.ts -------------------------------------------------------------------------------- /TypeScript/Application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/Application.ts -------------------------------------------------------------------------------- /TypeScript/Comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/Comment.ts -------------------------------------------------------------------------------- /TypeScript/CommentField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/CommentField.ts -------------------------------------------------------------------------------- /TypeScript/CommentSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/CommentSection.ts -------------------------------------------------------------------------------- /TypeScript/CommentThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/CommentThread.ts -------------------------------------------------------------------------------- /TypeScript/ErrorScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/ErrorScreen.ts -------------------------------------------------------------------------------- /TypeScript/HttpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/HttpRequest.ts -------------------------------------------------------------------------------- /TypeScript/LoadMore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/LoadMore.ts -------------------------------------------------------------------------------- /TypeScript/LoadingScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/LoadingScreen.ts -------------------------------------------------------------------------------- /TypeScript/LocalisationManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/LocalisationManager.ts -------------------------------------------------------------------------------- /TypeScript/Migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/Migration.ts -------------------------------------------------------------------------------- /TypeScript/Options/Options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/Options/Options.ts -------------------------------------------------------------------------------- /TypeScript/Options/Safari.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/Options/Safari.ts -------------------------------------------------------------------------------- /TypeScript/Preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/Preferences.ts -------------------------------------------------------------------------------- /TypeScript/RedditAPI/Comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/RedditAPI/Comment.ts -------------------------------------------------------------------------------- /TypeScript/RedditAPI/EditComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/RedditAPI/EditComment.ts -------------------------------------------------------------------------------- /TypeScript/RedditAPI/RedditRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/RedditAPI/RedditRequest.ts -------------------------------------------------------------------------------- /TypeScript/RedditAPI/Report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/RedditAPI/Report.ts -------------------------------------------------------------------------------- /TypeScript/RedditAPI/Save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/RedditAPI/Save.ts -------------------------------------------------------------------------------- /TypeScript/RedditAPI/Username.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/RedditAPI/Username.ts -------------------------------------------------------------------------------- /TypeScript/RedditAPI/Vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/RedditAPI/Vote.ts -------------------------------------------------------------------------------- /TypeScript/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/Utilities.ts -------------------------------------------------------------------------------- /TypeScript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/index.ts -------------------------------------------------------------------------------- /TypeScript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/tsconfig.json -------------------------------------------------------------------------------- /TypeScript/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/tsd.json -------------------------------------------------------------------------------- /TypeScript/typings/chrome/chrome.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/typings/chrome/chrome.d.ts -------------------------------------------------------------------------------- /TypeScript/typings/es5-compatibility.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /TypeScript/typings/es6-promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/typings/es6-promise.d.ts -------------------------------------------------------------------------------- /TypeScript/typings/firefox/firefox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/typings/firefox/firefox.d.ts -------------------------------------------------------------------------------- /TypeScript/typings/handlebars.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/typings/handlebars.d.ts -------------------------------------------------------------------------------- /TypeScript/typings/he.d.ts: -------------------------------------------------------------------------------- 1 | declare module he { 2 | export function decode(html : string); 3 | } 4 | -------------------------------------------------------------------------------- /TypeScript/typings/safari/safari.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/typings/safari/safari.d.ts -------------------------------------------------------------------------------- /TypeScript/typings/snuownd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/TypeScript/typings/snuownd.d.ts -------------------------------------------------------------------------------- /_locales/en-US/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/_locales/en-US/messages.json -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/_locales/es/messages.json -------------------------------------------------------------------------------- /_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/_locales/fr/messages.json -------------------------------------------------------------------------------- /_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/_locales/no/messages.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES6" 4 | } 5 | } -------------------------------------------------------------------------------- /lib/handlebars-v3.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/lib/handlebars-v3.0.3.js -------------------------------------------------------------------------------- /lib/snuownd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/lib/snuownd.js -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/make.sh -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/options.html -------------------------------------------------------------------------------- /reload.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/reload.scpt -------------------------------------------------------------------------------- /res/bourbon/_bourbon-deprecated-upcoming.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/_bourbon-deprecated-upcoming.scss -------------------------------------------------------------------------------- /res/bourbon/_bourbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/_bourbon.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_button.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_clearfix.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_directional-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_directional-values.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_ellipsis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_ellipsis.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_font-family.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_font-family.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_hide-text.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_html5-input-types.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_html5-input-types.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_position.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_prefixer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_prefixer.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_retina-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_retina-image.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_size.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_timing-functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_timing-functions.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_triangle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_triangle.scss -------------------------------------------------------------------------------- /res/bourbon/addons/_word-wrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/addons/_word-wrap.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_animation.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_appearance.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_appearance.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_backface-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_backface-visibility.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_background-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_background-image.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_background.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_border-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_border-image.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_border-radius.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_box-sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_box-sizing.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_calc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_calc.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_columns.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_filter.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_flex-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_flex-box.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_font-face.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_font-face.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_font-feature-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_font-feature-settings.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_hidpi-media-query.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_hidpi-media-query.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_hyphens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_hyphens.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_image-rendering.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_image-rendering.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_keyframes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_keyframes.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_linear-gradient.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_linear-gradient.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_perspective.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_perspective.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_placeholder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_placeholder.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_radial-gradient.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_radial-gradient.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_transform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_transform.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_transition.scss -------------------------------------------------------------------------------- /res/bourbon/css3/_user-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/css3/_user-select.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_assign.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_assign.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_color-lightness.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_color-lightness.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_flex-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_flex-grid.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_golden-ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_golden-ratio.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_grid-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_grid-width.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_modular-scale.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_modular-scale.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_px-to-em.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_px-to-em.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_px-to-rem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_px-to-rem.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_strip-units.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_strip-units.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_tint-shade.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_tint-shade.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_transition-property-name.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_transition-property-name.scss -------------------------------------------------------------------------------- /res/bourbon/functions/_unpack.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/functions/_unpack.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_convert-units.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_convert-units.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_gradient-positions-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_gradient-positions-parser.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_is-num.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_is-num.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_linear-angle-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_linear-angle-parser.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_linear-gradient-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_linear-gradient-parser.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_linear-positions-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_linear-positions-parser.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_linear-side-corner-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_linear-side-corner-parser.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_radial-arg-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_radial-arg-parser.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_radial-gradient-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_radial-gradient-parser.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_radial-positions-parser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_radial-positions-parser.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_render-gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_render-gradients.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_shape-size-stripper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_shape-size-stripper.scss -------------------------------------------------------------------------------- /res/bourbon/helpers/_str-to-num.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/helpers/_str-to-num.scss -------------------------------------------------------------------------------- /res/bourbon/settings/_prefixer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/bourbon/settings/_prefixer.scss -------------------------------------------------------------------------------- /res/bourbon/settings/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | $em-base: 16px !default; 2 | -------------------------------------------------------------------------------- /res/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/icon128.png -------------------------------------------------------------------------------- /res/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/options.css -------------------------------------------------------------------------------- /res/options.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/options.css.map -------------------------------------------------------------------------------- /res/options.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/options.scss -------------------------------------------------------------------------------- /res/redditblocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/redditblocked.svg -------------------------------------------------------------------------------- /res/redditbroken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/redditbroken.svg -------------------------------------------------------------------------------- /res/redditoverload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/redditoverload.svg -------------------------------------------------------------------------------- /res/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/style.scss -------------------------------------------------------------------------------- /res/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/res/templates.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperManifolds/alientube/HEAD/tsconfig.json --------------------------------------------------------------------------------