├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── .zipignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── build-addon.sh ├── locales └── package-addon.sh ├── bootstrap.js ├── chrome.manifest ├── chrome ├── content │ ├── default.html │ ├── img │ │ ├── Add-gray.svg │ │ ├── Play-gray.svg │ │ ├── add.svg │ │ ├── audio-thumbnail.svg │ │ ├── close-menu.svg │ │ ├── close.svg │ │ ├── drag.svg │ │ ├── exit-close.svg │ │ ├── exit-replay.svg │ │ ├── loading-bars.svg │ │ ├── maximize.svg │ │ ├── minimize.svg │ │ ├── move-icon.svg │ │ ├── mute.svg │ │ ├── next.svg │ │ ├── open-menu.svg │ │ ├── pause.svg │ │ ├── play-blue.svg │ │ ├── play.svg │ │ ├── prev.svg │ │ ├── repeat.svg │ │ ├── static-static.png │ │ ├── static.png │ │ ├── to-tab.svg │ │ ├── unmute.svg │ │ └── video-thumbnail.svg │ └── panel.css └── skin │ └── icon.png ├── code_of_conduct.md ├── contributing.md ├── docs ├── acceptance-criteria.md ├── images │ ├── dragging.gif │ ├── gradient-logo.png │ ├── kpi-1.png │ ├── kpi-2.png │ ├── launching.gif │ └── logo.svg └── metrics.md ├── frontend ├── app.js ├── client-lib │ ├── app-data.js │ ├── audio-ctrl.js │ ├── emitter.js │ ├── format-time.js │ ├── send-metrics-event.js │ └── send-to-addon.js └── components │ ├── app-view.js │ ├── close-control.js │ ├── confirm-view.js │ ├── error-view.js │ ├── general-controls.js │ ├── loading-view.js │ ├── minimized-controls.js │ ├── next-button.js │ ├── playback-control.js │ ├── player-controls.js │ ├── player-view.js │ ├── prev-button.js │ ├── progress.js │ ├── queue-item.js │ ├── queues.js │ ├── replay-view.js │ ├── send-to-tab.js │ ├── size-control.js │ └── sound-control.js ├── install.rdf ├── lib ├── dragging-utils.js ├── native-window-utils.js ├── topify.js └── vendor │ └── noitidart-ostypes │ ├── cutils.jsm │ ├── ostypes_mac.jsm │ ├── ostypes_win.jsm │ └── ostypes_x11.jsm ├── locales ├── README.md ├── ar │ └── addon.properties ├── ast │ └── addon.properties ├── az │ └── addon.properties ├── bn-BD │ └── addon.properties ├── bs │ └── addon.properties ├── cak │ └── addon.properties ├── cs │ └── addon.properties ├── de │ └── addon.properties ├── el │ └── addon.properties ├── en-US │ └── addon.properties ├── es-CL │ └── addon.properties ├── es-ES │ └── addon.properties ├── es-MX │ └── addon.properties ├── fa │ └── addon.properties ├── fr │ └── addon.properties ├── fy-NL │ └── addon.properties ├── he │ └── addon.properties ├── hu │ └── addon.properties ├── id │ └── addon.properties ├── it │ └── addon.properties ├── ja │ └── addon.properties ├── ka │ └── addon.properties ├── kab │ └── addon.properties ├── ko │ └── addon.properties ├── ms │ └── addon.properties ├── nb-NO │ └── addon.properties ├── nl │ └── addon.properties ├── nn-NO │ └── addon.properties ├── pt-BR │ └── addon.properties ├── pt-PT │ └── addon.properties ├── ro │ └── addon.properties ├── ru │ └── addon.properties ├── sk │ └── addon.properties ├── sl │ └── addon.properties ├── sq │ └── addon.properties ├── sr │ └── addon.properties ├── sv-SE │ └── addon.properties ├── te │ └── addon.properties ├── tr │ └── addon.properties ├── uk │ └── addon.properties ├── zh-CN │ └── addon.properties └── zh-TW │ └── addon.properties ├── package.json ├── webextension ├── background.js ├── content-scripts │ └── icon-overlay.js ├── lib │ ├── get-locale-strings.js │ ├── get-random-id.js │ ├── get-soundcloud-url.js │ ├── get-vimeo-url.js │ ├── launch-video.js │ ├── message-handler.js │ ├── querystring.js │ ├── send-metrics-data.js │ ├── window-messages.js │ └── youtube-helpers.js ├── manifest.json └── options │ ├── options.html │ └── options.js └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/.travis.yml -------------------------------------------------------------------------------- /.zipignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/.zipignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/README.md -------------------------------------------------------------------------------- /bin/build-addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/bin/build-addon.sh -------------------------------------------------------------------------------- /bin/locales: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/bin/locales -------------------------------------------------------------------------------- /bin/package-addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/bin/package-addon.sh -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/bootstrap.js -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/default.html -------------------------------------------------------------------------------- /chrome/content/img/Add-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/Add-gray.svg -------------------------------------------------------------------------------- /chrome/content/img/Play-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/Play-gray.svg -------------------------------------------------------------------------------- /chrome/content/img/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/add.svg -------------------------------------------------------------------------------- /chrome/content/img/audio-thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/audio-thumbnail.svg -------------------------------------------------------------------------------- /chrome/content/img/close-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/close-menu.svg -------------------------------------------------------------------------------- /chrome/content/img/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/close.svg -------------------------------------------------------------------------------- /chrome/content/img/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/drag.svg -------------------------------------------------------------------------------- /chrome/content/img/exit-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/exit-close.svg -------------------------------------------------------------------------------- /chrome/content/img/exit-replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/exit-replay.svg -------------------------------------------------------------------------------- /chrome/content/img/loading-bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/loading-bars.svg -------------------------------------------------------------------------------- /chrome/content/img/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/maximize.svg -------------------------------------------------------------------------------- /chrome/content/img/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/minimize.svg -------------------------------------------------------------------------------- /chrome/content/img/move-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/move-icon.svg -------------------------------------------------------------------------------- /chrome/content/img/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/mute.svg -------------------------------------------------------------------------------- /chrome/content/img/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/next.svg -------------------------------------------------------------------------------- /chrome/content/img/open-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/open-menu.svg -------------------------------------------------------------------------------- /chrome/content/img/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/pause.svg -------------------------------------------------------------------------------- /chrome/content/img/play-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/play-blue.svg -------------------------------------------------------------------------------- /chrome/content/img/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/play.svg -------------------------------------------------------------------------------- /chrome/content/img/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/prev.svg -------------------------------------------------------------------------------- /chrome/content/img/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/repeat.svg -------------------------------------------------------------------------------- /chrome/content/img/static-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/static-static.png -------------------------------------------------------------------------------- /chrome/content/img/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/static.png -------------------------------------------------------------------------------- /chrome/content/img/to-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/to-tab.svg -------------------------------------------------------------------------------- /chrome/content/img/unmute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/unmute.svg -------------------------------------------------------------------------------- /chrome/content/img/video-thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/img/video-thumbnail.svg -------------------------------------------------------------------------------- /chrome/content/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/content/panel.css -------------------------------------------------------------------------------- /chrome/skin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/chrome/skin/icon.png -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/acceptance-criteria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/docs/acceptance-criteria.md -------------------------------------------------------------------------------- /docs/images/dragging.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/docs/images/dragging.gif -------------------------------------------------------------------------------- /docs/images/gradient-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/docs/images/gradient-logo.png -------------------------------------------------------------------------------- /docs/images/kpi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/docs/images/kpi-1.png -------------------------------------------------------------------------------- /docs/images/kpi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/docs/images/kpi-2.png -------------------------------------------------------------------------------- /docs/images/launching.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/docs/images/launching.gif -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/docs/metrics.md -------------------------------------------------------------------------------- /frontend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/app.js -------------------------------------------------------------------------------- /frontend/client-lib/app-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/client-lib/app-data.js -------------------------------------------------------------------------------- /frontend/client-lib/audio-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/client-lib/audio-ctrl.js -------------------------------------------------------------------------------- /frontend/client-lib/emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/client-lib/emitter.js -------------------------------------------------------------------------------- /frontend/client-lib/format-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/client-lib/format-time.js -------------------------------------------------------------------------------- /frontend/client-lib/send-metrics-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/client-lib/send-metrics-event.js -------------------------------------------------------------------------------- /frontend/client-lib/send-to-addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/client-lib/send-to-addon.js -------------------------------------------------------------------------------- /frontend/components/app-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/app-view.js -------------------------------------------------------------------------------- /frontend/components/close-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/close-control.js -------------------------------------------------------------------------------- /frontend/components/confirm-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/confirm-view.js -------------------------------------------------------------------------------- /frontend/components/error-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/error-view.js -------------------------------------------------------------------------------- /frontend/components/general-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/general-controls.js -------------------------------------------------------------------------------- /frontend/components/loading-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/loading-view.js -------------------------------------------------------------------------------- /frontend/components/minimized-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/minimized-controls.js -------------------------------------------------------------------------------- /frontend/components/next-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/next-button.js -------------------------------------------------------------------------------- /frontend/components/playback-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/playback-control.js -------------------------------------------------------------------------------- /frontend/components/player-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/player-controls.js -------------------------------------------------------------------------------- /frontend/components/player-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/player-view.js -------------------------------------------------------------------------------- /frontend/components/prev-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/prev-button.js -------------------------------------------------------------------------------- /frontend/components/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/progress.js -------------------------------------------------------------------------------- /frontend/components/queue-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/queue-item.js -------------------------------------------------------------------------------- /frontend/components/queues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/queues.js -------------------------------------------------------------------------------- /frontend/components/replay-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/replay-view.js -------------------------------------------------------------------------------- /frontend/components/send-to-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/send-to-tab.js -------------------------------------------------------------------------------- /frontend/components/size-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/size-control.js -------------------------------------------------------------------------------- /frontend/components/sound-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/frontend/components/sound-control.js -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/install.rdf -------------------------------------------------------------------------------- /lib/dragging-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/lib/dragging-utils.js -------------------------------------------------------------------------------- /lib/native-window-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/lib/native-window-utils.js -------------------------------------------------------------------------------- /lib/topify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/lib/topify.js -------------------------------------------------------------------------------- /lib/vendor/noitidart-ostypes/cutils.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/lib/vendor/noitidart-ostypes/cutils.jsm -------------------------------------------------------------------------------- /lib/vendor/noitidart-ostypes/ostypes_mac.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/lib/vendor/noitidart-ostypes/ostypes_mac.jsm -------------------------------------------------------------------------------- /lib/vendor/noitidart-ostypes/ostypes_win.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/lib/vendor/noitidart-ostypes/ostypes_win.jsm -------------------------------------------------------------------------------- /lib/vendor/noitidart-ostypes/ostypes_x11.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/lib/vendor/noitidart-ostypes/ostypes_x11.jsm -------------------------------------------------------------------------------- /locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/README.md -------------------------------------------------------------------------------- /locales/ar/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/ar/addon.properties -------------------------------------------------------------------------------- /locales/ast/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/ast/addon.properties -------------------------------------------------------------------------------- /locales/az/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/az/addon.properties -------------------------------------------------------------------------------- /locales/bn-BD/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/bn-BD/addon.properties -------------------------------------------------------------------------------- /locales/bs/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/bs/addon.properties -------------------------------------------------------------------------------- /locales/cak/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/cak/addon.properties -------------------------------------------------------------------------------- /locales/cs/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/cs/addon.properties -------------------------------------------------------------------------------- /locales/de/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/de/addon.properties -------------------------------------------------------------------------------- /locales/el/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/el/addon.properties -------------------------------------------------------------------------------- /locales/en-US/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/en-US/addon.properties -------------------------------------------------------------------------------- /locales/es-CL/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/es-CL/addon.properties -------------------------------------------------------------------------------- /locales/es-ES/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/es-ES/addon.properties -------------------------------------------------------------------------------- /locales/es-MX/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/es-MX/addon.properties -------------------------------------------------------------------------------- /locales/fa/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/fa/addon.properties -------------------------------------------------------------------------------- /locales/fr/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/fr/addon.properties -------------------------------------------------------------------------------- /locales/fy-NL/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/fy-NL/addon.properties -------------------------------------------------------------------------------- /locales/he/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/he/addon.properties -------------------------------------------------------------------------------- /locales/hu/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/hu/addon.properties -------------------------------------------------------------------------------- /locales/id/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/id/addon.properties -------------------------------------------------------------------------------- /locales/it/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/it/addon.properties -------------------------------------------------------------------------------- /locales/ja/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/ja/addon.properties -------------------------------------------------------------------------------- /locales/ka/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/ka/addon.properties -------------------------------------------------------------------------------- /locales/kab/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/kab/addon.properties -------------------------------------------------------------------------------- /locales/ko/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/ko/addon.properties -------------------------------------------------------------------------------- /locales/ms/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/ms/addon.properties -------------------------------------------------------------------------------- /locales/nb-NO/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/nb-NO/addon.properties -------------------------------------------------------------------------------- /locales/nl/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/nl/addon.properties -------------------------------------------------------------------------------- /locales/nn-NO/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/nn-NO/addon.properties -------------------------------------------------------------------------------- /locales/pt-BR/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/pt-BR/addon.properties -------------------------------------------------------------------------------- /locales/pt-PT/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/pt-PT/addon.properties -------------------------------------------------------------------------------- /locales/ro/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/ro/addon.properties -------------------------------------------------------------------------------- /locales/ru/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/ru/addon.properties -------------------------------------------------------------------------------- /locales/sk/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/sk/addon.properties -------------------------------------------------------------------------------- /locales/sl/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/sl/addon.properties -------------------------------------------------------------------------------- /locales/sq/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/sq/addon.properties -------------------------------------------------------------------------------- /locales/sr/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/sr/addon.properties -------------------------------------------------------------------------------- /locales/sv-SE/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/sv-SE/addon.properties -------------------------------------------------------------------------------- /locales/te/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/te/addon.properties -------------------------------------------------------------------------------- /locales/tr/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/tr/addon.properties -------------------------------------------------------------------------------- /locales/uk/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/uk/addon.properties -------------------------------------------------------------------------------- /locales/zh-CN/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/zh-CN/addon.properties -------------------------------------------------------------------------------- /locales/zh-TW/addon.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/locales/zh-TW/addon.properties -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/package.json -------------------------------------------------------------------------------- /webextension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/background.js -------------------------------------------------------------------------------- /webextension/content-scripts/icon-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/content-scripts/icon-overlay.js -------------------------------------------------------------------------------- /webextension/lib/get-locale-strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/get-locale-strings.js -------------------------------------------------------------------------------- /webextension/lib/get-random-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/get-random-id.js -------------------------------------------------------------------------------- /webextension/lib/get-soundcloud-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/get-soundcloud-url.js -------------------------------------------------------------------------------- /webextension/lib/get-vimeo-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/get-vimeo-url.js -------------------------------------------------------------------------------- /webextension/lib/launch-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/launch-video.js -------------------------------------------------------------------------------- /webextension/lib/message-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/message-handler.js -------------------------------------------------------------------------------- /webextension/lib/querystring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/querystring.js -------------------------------------------------------------------------------- /webextension/lib/send-metrics-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/send-metrics-data.js -------------------------------------------------------------------------------- /webextension/lib/window-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/window-messages.js -------------------------------------------------------------------------------- /webextension/lib/youtube-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/lib/youtube-helpers.js -------------------------------------------------------------------------------- /webextension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/manifest.json -------------------------------------------------------------------------------- /webextension/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/options/options.html -------------------------------------------------------------------------------- /webextension/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webextension/options/options.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meandavejustice/min-vid/HEAD/webpack.config.js --------------------------------------------------------------------------------