├── .github └── ISSUE_TEMPLATE.md ├── .jshintrc ├── GPL ├── LGPL ├── LICENSE ├── MPL ├── README.md ├── bootstrap.js ├── chrome.manifest ├── chrome ├── content │ ├── about │ │ ├── about.js │ │ ├── about.xul │ │ └── index.xml │ ├── common │ │ ├── bindings.css │ │ ├── bindings.xml │ │ ├── internalFunctions.js │ │ └── treecol-filtering.css │ ├── dta │ │ ├── addurl.js │ │ ├── addurl.xul │ │ ├── manager-aero.xul │ │ ├── manager-newer.xul │ │ ├── manager.xul │ │ ├── manager │ │ │ ├── aero.xul │ │ │ ├── conflicts.js │ │ │ ├── conflicts.xul │ │ │ ├── info.js │ │ │ ├── info.xul │ │ │ ├── manager.js │ │ │ ├── manager.xul │ │ │ ├── metaselect.js │ │ │ ├── metaselect.xul │ │ │ ├── tooltip.xul │ │ │ ├── tree.js │ │ │ └── utils.js │ │ ├── maskbutton.xml │ │ ├── mirrors.js │ │ ├── mirrors.xul │ │ ├── select.js │ │ └── select.xul │ ├── integration │ │ ├── elements.xul │ │ ├── saveas.xul │ │ ├── toolbarinstall.js │ │ └── toolbarinstall.xul │ ├── mac │ │ └── manager.xul │ ├── preferences │ │ ├── advPane.xul │ │ ├── bindings.xml │ │ ├── filtersPane.xul │ │ ├── interfacePane.xul │ │ ├── mainPane.xul │ │ ├── prefs.js │ │ ├── prefs.xul │ │ ├── privacyPane.xul │ │ ├── schedulePane.xul │ │ └── serversPane.xul │ ├── privacy │ │ └── overlaySanitize191.xul │ ├── unix │ │ └── manager.xul │ └── win │ │ └── manager.xul ├── locale │ ├── de │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── en-US │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── select.dtd │ │ └── select.properties │ ├── es-ES │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── et │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── fr │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── gl-ES │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── gl │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── id │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── it │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── ja │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── nl │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── pl │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── pt-BR │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── pt-PT │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── ro │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── ru │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── sl-SI │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── sv-SE │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── tr │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ ├── zh-CN │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties │ └── zh-TW │ │ ├── addurl.dtd │ │ ├── addurl.properties │ │ ├── common.properties │ │ ├── conflicts.dtd │ │ ├── conflicts.properties │ │ ├── description.properties │ │ ├── downloadHelper.properties │ │ ├── dta.dtd │ │ ├── filters.properties │ │ ├── landingpage.dtd │ │ ├── mainmenu.dtd │ │ ├── manager.dtd │ │ ├── manager.properties │ │ ├── mask.dtd │ │ ├── menu.dtd │ │ ├── menu.properties │ │ ├── metalinker.dtd │ │ ├── metalinker.properties │ │ ├── mirrors.dtd │ │ ├── mirrors.properties │ │ ├── prefpanes.dtd │ │ ├── prefpanes.properties │ │ ├── sanitize.properties │ │ ├── saveas.dtd │ │ ├── select.dtd │ │ └── select.properties ├── public │ ├── exporthtml.css │ ├── integration │ │ ├── added_large.png │ │ └── added_small.png │ └── logo.png └── skin │ ├── add │ └── style.css │ ├── common │ ├── alert.png │ ├── base.css │ ├── mask.png │ ├── metalink16.png │ ├── metalink32.png │ ├── metalink48.png │ ├── metalink64.png │ ├── metalink96.png │ ├── mirrorManager.png │ ├── openurl.png │ ├── selection.png │ ├── selection@2x.png │ ├── style.css │ └── toolbarspacer.png │ ├── integration │ ├── saveas.css │ ├── style.css │ └── toolbarinstall.css │ ├── mac │ ├── Search.png │ ├── Search@2x.png │ ├── common.css │ ├── manager.css │ ├── preferences.css │ ├── select.css │ ├── tools.png │ └── tools@2x.png │ ├── manager │ ├── donate16.png │ ├── donate33.png │ ├── donate51.png │ ├── icons.png │ ├── icons@2x.png │ ├── info.css │ ├── metalinker.css │ ├── netstatus.png │ ├── paused-autoretry.png │ ├── paused-undetermined.png │ ├── style.css │ ├── tools.png │ ├── tools@2x.png │ └── undetermined.png │ ├── mirrors │ ├── actions.png │ ├── mirror.png │ ├── mirrors.png │ └── style.css │ ├── preferences │ ├── preferences-toolkit.png │ ├── preferences.png │ ├── server.png │ └── style.css │ ├── select │ ├── checks.png │ ├── checks@2x.png │ ├── style.css │ ├── tabActiveEnd.svg │ ├── tabActiveMiddle.svg │ ├── tabActiveStart.svg │ ├── tabBackgroundEnd.svg │ ├── tabBackgroundMiddle.svg │ └── tabBackgroundStart.svg │ ├── sounds │ ├── done.ogg │ └── error.ogg │ ├── toolbarbuttons │ ├── buttons.css │ ├── buttons16.png │ ├── buttons24.png │ ├── buttons32.png │ └── buttons64.png │ ├── unix │ ├── common.css │ ├── manager.css │ ├── preferences.css │ └── select.css │ ├── win │ ├── Search-glass.png │ ├── common-aero.css │ ├── common.css │ ├── manager-aero.css │ ├── manager-new.css │ ├── manager-newer.css │ ├── manager.css │ ├── netstatus-aero.png │ ├── preferences.css │ ├── select.css │ ├── tools.png │ └── tools@2x.png │ └── windowicons │ ├── DownThemAll.ico │ ├── DownThemAll.png │ └── DownThemAllMirrors.ico ├── icon.png ├── icon64.png ├── install.rdf ├── make.py ├── modules ├── api.js ├── api.jsm ├── components.js ├── constants.js ├── defaultPrefs.js ├── glue.jsm ├── loaders │ ├── integration-content.js │ ├── integration.js │ ├── saveas.js │ └── selector.js ├── logging.js ├── main.js ├── manager │ ├── chunk.js │ ├── conflicts.js │ ├── connection.js │ ├── decompressor.js │ ├── globalbucket.js │ ├── globalprogress.js │ ├── imex.js │ ├── matcher.js │ ├── memoryreporter.js │ ├── preallocator.js │ ├── preallocator │ │ ├── asynccopier.js │ │ ├── cothread.js │ │ ├── unix.js │ │ ├── win.js │ │ └── worker.js │ ├── queuestore.js │ ├── renamer.js │ ├── speedstats.js │ ├── verificator.js │ ├── visitormanager.js │ └── worker_posix.js ├── preferences.js ├── prompts.js ├── support │ ├── alertservice.js │ ├── atoms.js │ ├── batchgen.js │ ├── bytebucket.js │ ├── contenthandling-content.js │ ├── contenthandling.js │ ├── cothreads.js │ ├── defer.js │ ├── domainprefs.js │ ├── downloadHelper.js │ ├── fileextsheet.js │ ├── filtermanager.js │ ├── filters.json │ ├── historymanager.js │ ├── iconcheat.js │ ├── icons.js │ ├── loggedprompter.js │ ├── mediator.js │ ├── memoize.js │ ├── memorypressure.js │ ├── metalinker.js │ ├── movefile.js │ ├── movefile_worker.js │ ├── observers.js │ ├── optimpl.js │ ├── overlays.js │ ├── pbm.js │ ├── proxyprovider.js │ ├── regexpmerger.js │ ├── requestmanipulation.js │ ├── scheduleautostart.js │ ├── serverlimits.js │ ├── stringfuncs.js │ ├── textlinks.js │ ├── uniquelinks.js │ └── urlmanager.js ├── tests │ ├── require │ │ ├── cyclicA.js │ │ ├── cyclicB.js │ │ ├── recursive.js │ │ └── simple.js │ ├── worker.js │ ├── workerFail.js │ └── workerThrow.js ├── thirdparty │ └── xregexp.js ├── utils.js └── version.js └── tests ├── data ├── compressed.gz └── metalink │ ├── blank.meta4 │ ├── blank.metalink │ ├── corrupt_hash.meta4 │ ├── corrupt_hash.metalink │ ├── emptyDownloadFile.meta4 │ ├── emptyDownloadFile.metalink │ ├── emptyFile.meta4 │ ├── emptyFile.metalink │ ├── emptyFilesNode.meta4 │ ├── emptyFilesNode.metalink │ ├── emptyUrls.meta4 │ ├── emptyUrls.metalink │ ├── hash.meta4 │ ├── hash.metalink │ ├── invalid_encoding.meta4 │ ├── invalid_encoding.metalink │ ├── invalid_metalink.meta4 │ ├── invalid_metalink.metalink │ ├── invalid_namespace.meta4 │ ├── invalid_namespace.metalink │ ├── invalid_pieces.meta4 │ ├── invalid_pieces.metalink │ ├── invalid_version.meta4 │ ├── invalid_version.metalink │ ├── iso_encoding.meta4 │ ├── iso_encoding.metalink │ ├── kernel.meta4 │ ├── kernel.metalink │ ├── priority_hash.meta4 │ ├── priority_hash.metalink │ ├── testFile.meta4 │ ├── testFile.metalink │ ├── utf.meta4 │ ├── utf.metalink │ ├── windows_1252.meta4 │ └── windows_1252.metalink ├── dta-tests.xul ├── general ├── testApiJSM.js ├── testCoThreads.js ├── testConstants.js ├── testGlue.js ├── testPreferences.js ├── testUtils.js ├── testVersion.js └── testXML.js ├── index.html ├── manager ├── testConnection.js ├── testDecompressor.js ├── testImex.js ├── testPreallocator.js ├── testRenamer.js └── testVisitorManager.js ├── qunit.css ├── qunit.js ├── runner.js └── support ├── metalinkHelpers.js ├── testAlertservice.js ├── testAtoms.js ├── testBatchgen.js ├── testDefer.js ├── testDomainprefs.js ├── testFileextsheet.js ├── testFilterManager.js ├── testHistorymanager.js ├── testMemoize.js ├── testMemoryPressure.js ├── testMetalinker.js ├── testMovefile.js ├── testObservers.js ├── testOptimpl.js ├── testPBM.js ├── testProxyProvider.js ├── testRequestManipulation.js ├── testServerLimits.js ├── testStringfuncs.js └── testTextLinks.js /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/.jshintrc -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/GPL -------------------------------------------------------------------------------- /LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/LGPL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /MPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/MPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/bootstrap.js -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/about/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/about/about.js -------------------------------------------------------------------------------- /chrome/content/about/about.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/about/about.xul -------------------------------------------------------------------------------- /chrome/content/about/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/about/index.xml -------------------------------------------------------------------------------- /chrome/content/common/bindings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/common/bindings.css -------------------------------------------------------------------------------- /chrome/content/common/bindings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/common/bindings.xml -------------------------------------------------------------------------------- /chrome/content/common/internalFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/common/internalFunctions.js -------------------------------------------------------------------------------- /chrome/content/common/treecol-filtering.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/common/treecol-filtering.css -------------------------------------------------------------------------------- /chrome/content/dta/addurl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/addurl.js -------------------------------------------------------------------------------- /chrome/content/dta/addurl.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/addurl.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager-aero.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager-aero.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager-newer.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager-newer.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager/aero.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/aero.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager/conflicts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/conflicts.js -------------------------------------------------------------------------------- /chrome/content/dta/manager/conflicts.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/conflicts.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/info.js -------------------------------------------------------------------------------- /chrome/content/dta/manager/info.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/info.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/manager.js -------------------------------------------------------------------------------- /chrome/content/dta/manager/manager.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/manager.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager/metaselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/metaselect.js -------------------------------------------------------------------------------- /chrome/content/dta/manager/metaselect.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/metaselect.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager/tooltip.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/tooltip.xul -------------------------------------------------------------------------------- /chrome/content/dta/manager/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/tree.js -------------------------------------------------------------------------------- /chrome/content/dta/manager/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/manager/utils.js -------------------------------------------------------------------------------- /chrome/content/dta/maskbutton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/maskbutton.xml -------------------------------------------------------------------------------- /chrome/content/dta/mirrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/mirrors.js -------------------------------------------------------------------------------- /chrome/content/dta/mirrors.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/mirrors.xul -------------------------------------------------------------------------------- /chrome/content/dta/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/select.js -------------------------------------------------------------------------------- /chrome/content/dta/select.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/dta/select.xul -------------------------------------------------------------------------------- /chrome/content/integration/elements.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/integration/elements.xul -------------------------------------------------------------------------------- /chrome/content/integration/saveas.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/integration/saveas.xul -------------------------------------------------------------------------------- /chrome/content/mac/manager.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/mac/manager.xul -------------------------------------------------------------------------------- /chrome/content/preferences/advPane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/advPane.xul -------------------------------------------------------------------------------- /chrome/content/preferences/bindings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/bindings.xml -------------------------------------------------------------------------------- /chrome/content/preferences/filtersPane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/filtersPane.xul -------------------------------------------------------------------------------- /chrome/content/preferences/mainPane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/mainPane.xul -------------------------------------------------------------------------------- /chrome/content/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/prefs.js -------------------------------------------------------------------------------- /chrome/content/preferences/prefs.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/prefs.xul -------------------------------------------------------------------------------- /chrome/content/preferences/privacyPane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/privacyPane.xul -------------------------------------------------------------------------------- /chrome/content/preferences/schedulePane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/schedulePane.xul -------------------------------------------------------------------------------- /chrome/content/preferences/serversPane.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/preferences/serversPane.xul -------------------------------------------------------------------------------- /chrome/content/unix/manager.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/unix/manager.xul -------------------------------------------------------------------------------- /chrome/content/win/manager.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/content/win/manager.xul -------------------------------------------------------------------------------- /chrome/locale/de/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/de/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/de/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/common.properties -------------------------------------------------------------------------------- /chrome/locale/de/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/de/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/de/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/description.properties -------------------------------------------------------------------------------- /chrome/locale/de/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/de/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/de/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/filters.properties -------------------------------------------------------------------------------- /chrome/locale/de/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/de/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/de/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/de/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/manager.properties -------------------------------------------------------------------------------- /chrome/locale/de/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/de/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/de/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/menu.properties -------------------------------------------------------------------------------- /chrome/locale/de/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/de/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/de/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/de/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/de/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/de/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/de/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! Verlauf & Warteschlange 2 | -------------------------------------------------------------------------------- /chrome/locale/de/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/de/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/select.dtd -------------------------------------------------------------------------------- /chrome/locale/de/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/de/select.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/common.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/description.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/filters.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/manager.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/menu.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! History & Queue 2 | -------------------------------------------------------------------------------- /chrome/locale/en-US/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/select.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/en-US/select.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/common.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/description.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/filters.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/manager.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/menu.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/sanitize.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/sanitize.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/es-ES/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/select.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/es-ES/select.properties -------------------------------------------------------------------------------- /chrome/locale/et/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/et/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/et/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/common.properties -------------------------------------------------------------------------------- /chrome/locale/et/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/et/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/et/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/description.properties -------------------------------------------------------------------------------- /chrome/locale/et/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/et/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/et/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/filters.properties -------------------------------------------------------------------------------- /chrome/locale/et/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/et/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/et/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/et/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/manager.properties -------------------------------------------------------------------------------- /chrome/locale/et/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/et/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/et/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/menu.properties -------------------------------------------------------------------------------- /chrome/locale/et/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/et/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/et/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/et/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/et/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/et/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/et/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! ajalugu ja järjekord 2 | -------------------------------------------------------------------------------- /chrome/locale/et/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/et/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/select.dtd -------------------------------------------------------------------------------- /chrome/locale/et/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/et/select.properties -------------------------------------------------------------------------------- /chrome/locale/fr/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/fr/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/common.properties -------------------------------------------------------------------------------- /chrome/locale/fr/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/fr/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/description.properties -------------------------------------------------------------------------------- /chrome/locale/fr/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/fr/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/filters.properties -------------------------------------------------------------------------------- /chrome/locale/fr/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/manager.properties -------------------------------------------------------------------------------- /chrome/locale/fr/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/menu.properties -------------------------------------------------------------------------------- /chrome/locale/fr/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/fr/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/fr/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/fr/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=Historique & file d'attente DownThemAll! 2 | -------------------------------------------------------------------------------- /chrome/locale/fr/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/fr/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/select.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/fr/select.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/common.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/description.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/filters.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/manager.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/menu.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/gl-ES/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=Historial e cola de DownThemAll! 2 | -------------------------------------------------------------------------------- /chrome/locale/gl-ES/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/gl-ES/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/select.dtd -------------------------------------------------------------------------------- /chrome/locale/gl-ES/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl-ES/select.properties -------------------------------------------------------------------------------- /chrome/locale/gl/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/gl/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/common.properties -------------------------------------------------------------------------------- /chrome/locale/gl/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/gl/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/description.properties -------------------------------------------------------------------------------- /chrome/locale/gl/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/gl/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/filters.properties -------------------------------------------------------------------------------- /chrome/locale/gl/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/manager.properties -------------------------------------------------------------------------------- /chrome/locale/gl/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/menu.properties -------------------------------------------------------------------------------- /chrome/locale/gl/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/gl/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/gl/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/gl/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=Historial e cola de DownThemAll! 2 | -------------------------------------------------------------------------------- /chrome/locale/gl/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/gl/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/select.dtd -------------------------------------------------------------------------------- /chrome/locale/gl/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/gl/select.properties -------------------------------------------------------------------------------- /chrome/locale/id/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/id/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/id/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/common.properties -------------------------------------------------------------------------------- /chrome/locale/id/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/id/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/id/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/description.properties -------------------------------------------------------------------------------- /chrome/locale/id/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/id/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/id/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/filters.properties -------------------------------------------------------------------------------- /chrome/locale/id/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/id/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/id/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/id/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/manager.properties -------------------------------------------------------------------------------- /chrome/locale/id/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/id/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/id/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/menu.properties -------------------------------------------------------------------------------- /chrome/locale/id/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/id/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/id/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/id/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/id/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/id/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/id/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! Riwayat & Antrean 2 | -------------------------------------------------------------------------------- /chrome/locale/id/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/id/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/select.dtd -------------------------------------------------------------------------------- /chrome/locale/id/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/id/select.properties -------------------------------------------------------------------------------- /chrome/locale/it/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/it/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/it/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/common.properties -------------------------------------------------------------------------------- /chrome/locale/it/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/it/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/it/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/description.properties -------------------------------------------------------------------------------- /chrome/locale/it/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/it/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/it/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/filters.properties -------------------------------------------------------------------------------- /chrome/locale/it/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/it/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/it/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/it/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/manager.properties -------------------------------------------------------------------------------- /chrome/locale/it/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/it/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/it/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/menu.properties -------------------------------------------------------------------------------- /chrome/locale/it/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/it/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/it/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/it/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/it/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/it/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/it/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=Cronologia e coda DownThemAll! 2 | -------------------------------------------------------------------------------- /chrome/locale/it/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/it/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/select.dtd -------------------------------------------------------------------------------- /chrome/locale/it/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/it/select.properties -------------------------------------------------------------------------------- /chrome/locale/ja/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/ja/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/common.properties -------------------------------------------------------------------------------- /chrome/locale/ja/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/ja/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/description.properties -------------------------------------------------------------------------------- /chrome/locale/ja/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/ja/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/filters.properties -------------------------------------------------------------------------------- /chrome/locale/ja/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/manager.properties -------------------------------------------------------------------------------- /chrome/locale/ja/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/menu.properties -------------------------------------------------------------------------------- /chrome/locale/ja/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/ja/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/ja/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/ja/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! のダウンロード履歴 2 | -------------------------------------------------------------------------------- /chrome/locale/ja/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/ja/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/select.dtd -------------------------------------------------------------------------------- /chrome/locale/ja/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ja/select.properties -------------------------------------------------------------------------------- /chrome/locale/nl/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/nl/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/common.properties -------------------------------------------------------------------------------- /chrome/locale/nl/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/nl/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/description.properties -------------------------------------------------------------------------------- /chrome/locale/nl/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/nl/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/filters.properties -------------------------------------------------------------------------------- /chrome/locale/nl/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/manager.properties -------------------------------------------------------------------------------- /chrome/locale/nl/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/menu.properties -------------------------------------------------------------------------------- /chrome/locale/nl/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/nl/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/nl/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/nl/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll!-geschiedenis en -wachtrij 2 | -------------------------------------------------------------------------------- /chrome/locale/nl/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/nl/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/select.dtd -------------------------------------------------------------------------------- /chrome/locale/nl/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/nl/select.properties -------------------------------------------------------------------------------- /chrome/locale/pl/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/pl/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/common.properties -------------------------------------------------------------------------------- /chrome/locale/pl/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/pl/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/description.properties -------------------------------------------------------------------------------- /chrome/locale/pl/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/pl/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/filters.properties -------------------------------------------------------------------------------- /chrome/locale/pl/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/manager.properties -------------------------------------------------------------------------------- /chrome/locale/pl/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/menu.properties -------------------------------------------------------------------------------- /chrome/locale/pl/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/pl/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/pl/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/pl/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=Historia i kolejka DownThemAll! 2 | -------------------------------------------------------------------------------- /chrome/locale/pl/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/pl/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/select.dtd -------------------------------------------------------------------------------- /chrome/locale/pl/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pl/select.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/common.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/description.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/filters.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/manager.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/menu.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=Histórico e Fila do DownThemAll! 2 | -------------------------------------------------------------------------------- /chrome/locale/pt-BR/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/pt-BR/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/select.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-BR/select.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/common.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/description.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/filters.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/manager.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/menu.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/pt-PT/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=Histórico & Em espera do DownThemAll! 2 | -------------------------------------------------------------------------------- /chrome/locale/pt-PT/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/pt-PT/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/select.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-PT/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/pt-PT/select.properties -------------------------------------------------------------------------------- /chrome/locale/ro/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/ro/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/common.properties -------------------------------------------------------------------------------- /chrome/locale/ro/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/ro/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/description.properties -------------------------------------------------------------------------------- /chrome/locale/ro/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/ro/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/filters.properties -------------------------------------------------------------------------------- /chrome/locale/ro/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/manager.properties -------------------------------------------------------------------------------- /chrome/locale/ro/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/menu.properties -------------------------------------------------------------------------------- /chrome/locale/ro/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/ro/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/ro/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/ro/sanitize.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/sanitize.properties -------------------------------------------------------------------------------- /chrome/locale/ro/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/ro/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/select.dtd -------------------------------------------------------------------------------- /chrome/locale/ro/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ro/select.properties -------------------------------------------------------------------------------- /chrome/locale/ru/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/ru/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/common.properties -------------------------------------------------------------------------------- /chrome/locale/ru/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/ru/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/description.properties -------------------------------------------------------------------------------- /chrome/locale/ru/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/ru/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/filters.properties -------------------------------------------------------------------------------- /chrome/locale/ru/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/manager.properties -------------------------------------------------------------------------------- /chrome/locale/ru/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/menu.properties -------------------------------------------------------------------------------- /chrome/locale/ru/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/ru/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/ru/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/ru/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! журнал и очередь 2 | -------------------------------------------------------------------------------- /chrome/locale/ru/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/ru/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/select.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/ru/select.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/common.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/description.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/filters.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/manager.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/menu.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/sl-SI/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! - zgodovina in čakalna vrsta 2 | -------------------------------------------------------------------------------- /chrome/locale/sl-SI/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/sl-SI/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/select.dtd -------------------------------------------------------------------------------- /chrome/locale/sl-SI/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sl-SI/select.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/common.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/description.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/filters.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/manager.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/menu.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! historik och kö 2 | -------------------------------------------------------------------------------- /chrome/locale/sv-SE/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/sv-SE/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/select.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/sv-SE/select.properties -------------------------------------------------------------------------------- /chrome/locale/tr/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/tr/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/common.properties -------------------------------------------------------------------------------- /chrome/locale/tr/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/tr/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/description.properties -------------------------------------------------------------------------------- /chrome/locale/tr/downloadHelper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/downloadHelper.properties -------------------------------------------------------------------------------- /chrome/locale/tr/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/filters.properties -------------------------------------------------------------------------------- /chrome/locale/tr/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/manager.properties -------------------------------------------------------------------------------- /chrome/locale/tr/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/menu.properties -------------------------------------------------------------------------------- /chrome/locale/tr/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/tr/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/tr/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/tr/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! Geçmiş ve İndirme Sırası 2 | -------------------------------------------------------------------------------- /chrome/locale/tr/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/tr/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/select.dtd -------------------------------------------------------------------------------- /chrome/locale/tr/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/tr/select.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/common.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/description.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/filters.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/manager.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/menu.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! 历史和队列 2 | -------------------------------------------------------------------------------- /chrome/locale/zh-CN/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/zh-CN/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/select.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-CN/select.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/addurl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/addurl.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/addurl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/addurl.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/common.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/conflicts.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/conflicts.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/conflicts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/conflicts.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/description.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/description.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/dta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/dta.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/filters.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/landingpage.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/landingpage.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/mainmenu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/mainmenu.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/manager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/manager.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/manager.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/manager.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/mask.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/mask.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/menu.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/menu.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/menu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/menu.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/metalinker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/metalinker.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/metalinker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/metalinker.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/mirrors.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/mirrors.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/mirrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/mirrors.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/prefpanes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/prefpanes.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/prefpanes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/prefpanes.properties -------------------------------------------------------------------------------- /chrome/locale/zh-TW/sanitize.properties: -------------------------------------------------------------------------------- 1 | sanitizeitem=DownThemAll! 歷史記錄與佇列清單 2 | -------------------------------------------------------------------------------- /chrome/locale/zh-TW/saveas.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/zh-TW/select.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/select.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/select.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/locale/zh-TW/select.properties -------------------------------------------------------------------------------- /chrome/public/exporthtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/public/exporthtml.css -------------------------------------------------------------------------------- /chrome/public/integration/added_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/public/integration/added_large.png -------------------------------------------------------------------------------- /chrome/public/integration/added_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/public/integration/added_small.png -------------------------------------------------------------------------------- /chrome/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/public/logo.png -------------------------------------------------------------------------------- /chrome/skin/add/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/add/style.css -------------------------------------------------------------------------------- /chrome/skin/common/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/alert.png -------------------------------------------------------------------------------- /chrome/skin/common/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/base.css -------------------------------------------------------------------------------- /chrome/skin/common/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/mask.png -------------------------------------------------------------------------------- /chrome/skin/common/metalink16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/metalink16.png -------------------------------------------------------------------------------- /chrome/skin/common/metalink32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/metalink32.png -------------------------------------------------------------------------------- /chrome/skin/common/metalink48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/metalink48.png -------------------------------------------------------------------------------- /chrome/skin/common/metalink64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/metalink64.png -------------------------------------------------------------------------------- /chrome/skin/common/metalink96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/metalink96.png -------------------------------------------------------------------------------- /chrome/skin/common/mirrorManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/mirrorManager.png -------------------------------------------------------------------------------- /chrome/skin/common/openurl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/openurl.png -------------------------------------------------------------------------------- /chrome/skin/common/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/selection.png -------------------------------------------------------------------------------- /chrome/skin/common/selection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/selection@2x.png -------------------------------------------------------------------------------- /chrome/skin/common/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/style.css -------------------------------------------------------------------------------- /chrome/skin/common/toolbarspacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/common/toolbarspacer.png -------------------------------------------------------------------------------- /chrome/skin/integration/saveas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/integration/saveas.css -------------------------------------------------------------------------------- /chrome/skin/integration/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/integration/style.css -------------------------------------------------------------------------------- /chrome/skin/integration/toolbarinstall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/integration/toolbarinstall.css -------------------------------------------------------------------------------- /chrome/skin/mac/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mac/Search.png -------------------------------------------------------------------------------- /chrome/skin/mac/Search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mac/Search@2x.png -------------------------------------------------------------------------------- /chrome/skin/mac/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mac/common.css -------------------------------------------------------------------------------- /chrome/skin/mac/manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mac/manager.css -------------------------------------------------------------------------------- /chrome/skin/mac/preferences.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mac/preferences.css -------------------------------------------------------------------------------- /chrome/skin/mac/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mac/select.css -------------------------------------------------------------------------------- /chrome/skin/mac/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mac/tools.png -------------------------------------------------------------------------------- /chrome/skin/mac/tools@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mac/tools@2x.png -------------------------------------------------------------------------------- /chrome/skin/manager/donate16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/donate16.png -------------------------------------------------------------------------------- /chrome/skin/manager/donate33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/donate33.png -------------------------------------------------------------------------------- /chrome/skin/manager/donate51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/donate51.png -------------------------------------------------------------------------------- /chrome/skin/manager/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/icons.png -------------------------------------------------------------------------------- /chrome/skin/manager/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/icons@2x.png -------------------------------------------------------------------------------- /chrome/skin/manager/info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/info.css -------------------------------------------------------------------------------- /chrome/skin/manager/metalinker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/metalinker.css -------------------------------------------------------------------------------- /chrome/skin/manager/netstatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/netstatus.png -------------------------------------------------------------------------------- /chrome/skin/manager/paused-autoretry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/paused-autoretry.png -------------------------------------------------------------------------------- /chrome/skin/manager/paused-undetermined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/paused-undetermined.png -------------------------------------------------------------------------------- /chrome/skin/manager/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/style.css -------------------------------------------------------------------------------- /chrome/skin/manager/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/tools.png -------------------------------------------------------------------------------- /chrome/skin/manager/tools@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/tools@2x.png -------------------------------------------------------------------------------- /chrome/skin/manager/undetermined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/manager/undetermined.png -------------------------------------------------------------------------------- /chrome/skin/mirrors/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mirrors/actions.png -------------------------------------------------------------------------------- /chrome/skin/mirrors/mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mirrors/mirror.png -------------------------------------------------------------------------------- /chrome/skin/mirrors/mirrors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mirrors/mirrors.png -------------------------------------------------------------------------------- /chrome/skin/mirrors/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/mirrors/style.css -------------------------------------------------------------------------------- /chrome/skin/preferences/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/preferences/preferences.png -------------------------------------------------------------------------------- /chrome/skin/preferences/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/preferences/server.png -------------------------------------------------------------------------------- /chrome/skin/preferences/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/preferences/style.css -------------------------------------------------------------------------------- /chrome/skin/select/checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/checks.png -------------------------------------------------------------------------------- /chrome/skin/select/checks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/checks@2x.png -------------------------------------------------------------------------------- /chrome/skin/select/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/style.css -------------------------------------------------------------------------------- /chrome/skin/select/tabActiveEnd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/tabActiveEnd.svg -------------------------------------------------------------------------------- /chrome/skin/select/tabActiveMiddle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/tabActiveMiddle.svg -------------------------------------------------------------------------------- /chrome/skin/select/tabActiveStart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/tabActiveStart.svg -------------------------------------------------------------------------------- /chrome/skin/select/tabBackgroundEnd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/tabBackgroundEnd.svg -------------------------------------------------------------------------------- /chrome/skin/select/tabBackgroundMiddle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/tabBackgroundMiddle.svg -------------------------------------------------------------------------------- /chrome/skin/select/tabBackgroundStart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/select/tabBackgroundStart.svg -------------------------------------------------------------------------------- /chrome/skin/sounds/done.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/sounds/done.ogg -------------------------------------------------------------------------------- /chrome/skin/sounds/error.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/sounds/error.ogg -------------------------------------------------------------------------------- /chrome/skin/toolbarbuttons/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/toolbarbuttons/buttons.css -------------------------------------------------------------------------------- /chrome/skin/toolbarbuttons/buttons16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/toolbarbuttons/buttons16.png -------------------------------------------------------------------------------- /chrome/skin/toolbarbuttons/buttons24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/toolbarbuttons/buttons24.png -------------------------------------------------------------------------------- /chrome/skin/toolbarbuttons/buttons32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/toolbarbuttons/buttons32.png -------------------------------------------------------------------------------- /chrome/skin/toolbarbuttons/buttons64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/toolbarbuttons/buttons64.png -------------------------------------------------------------------------------- /chrome/skin/unix/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/unix/common.css -------------------------------------------------------------------------------- /chrome/skin/unix/manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/unix/manager.css -------------------------------------------------------------------------------- /chrome/skin/unix/preferences.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/unix/preferences.css -------------------------------------------------------------------------------- /chrome/skin/unix/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/unix/select.css -------------------------------------------------------------------------------- /chrome/skin/win/Search-glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/Search-glass.png -------------------------------------------------------------------------------- /chrome/skin/win/common-aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/common-aero.css -------------------------------------------------------------------------------- /chrome/skin/win/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/common.css -------------------------------------------------------------------------------- /chrome/skin/win/manager-aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/manager-aero.css -------------------------------------------------------------------------------- /chrome/skin/win/manager-new.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/manager-new.css -------------------------------------------------------------------------------- /chrome/skin/win/manager-newer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/manager-newer.css -------------------------------------------------------------------------------- /chrome/skin/win/manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/manager.css -------------------------------------------------------------------------------- /chrome/skin/win/netstatus-aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/netstatus-aero.png -------------------------------------------------------------------------------- /chrome/skin/win/preferences.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/preferences.css -------------------------------------------------------------------------------- /chrome/skin/win/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/select.css -------------------------------------------------------------------------------- /chrome/skin/win/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/tools.png -------------------------------------------------------------------------------- /chrome/skin/win/tools@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/win/tools@2x.png -------------------------------------------------------------------------------- /chrome/skin/windowicons/DownThemAll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/windowicons/DownThemAll.ico -------------------------------------------------------------------------------- /chrome/skin/windowicons/DownThemAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/chrome/skin/windowicons/DownThemAll.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/icon.png -------------------------------------------------------------------------------- /icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/icon64.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/install.rdf -------------------------------------------------------------------------------- /make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/make.py -------------------------------------------------------------------------------- /modules/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/api.js -------------------------------------------------------------------------------- /modules/api.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/api.jsm -------------------------------------------------------------------------------- /modules/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/components.js -------------------------------------------------------------------------------- /modules/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/constants.js -------------------------------------------------------------------------------- /modules/defaultPrefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/defaultPrefs.js -------------------------------------------------------------------------------- /modules/glue.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/glue.jsm -------------------------------------------------------------------------------- /modules/loaders/integration-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/loaders/integration-content.js -------------------------------------------------------------------------------- /modules/loaders/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/loaders/integration.js -------------------------------------------------------------------------------- /modules/loaders/saveas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/loaders/saveas.js -------------------------------------------------------------------------------- /modules/loaders/selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/loaders/selector.js -------------------------------------------------------------------------------- /modules/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/logging.js -------------------------------------------------------------------------------- /modules/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/main.js -------------------------------------------------------------------------------- /modules/manager/chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/chunk.js -------------------------------------------------------------------------------- /modules/manager/conflicts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/conflicts.js -------------------------------------------------------------------------------- /modules/manager/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/connection.js -------------------------------------------------------------------------------- /modules/manager/decompressor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/decompressor.js -------------------------------------------------------------------------------- /modules/manager/globalbucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/globalbucket.js -------------------------------------------------------------------------------- /modules/manager/globalprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/globalprogress.js -------------------------------------------------------------------------------- /modules/manager/imex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/imex.js -------------------------------------------------------------------------------- /modules/manager/matcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/matcher.js -------------------------------------------------------------------------------- /modules/manager/memoryreporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/memoryreporter.js -------------------------------------------------------------------------------- /modules/manager/preallocator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/preallocator.js -------------------------------------------------------------------------------- /modules/manager/preallocator/asynccopier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/preallocator/asynccopier.js -------------------------------------------------------------------------------- /modules/manager/preallocator/cothread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/preallocator/cothread.js -------------------------------------------------------------------------------- /modules/manager/preallocator/unix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/preallocator/unix.js -------------------------------------------------------------------------------- /modules/manager/preallocator/win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/preallocator/win.js -------------------------------------------------------------------------------- /modules/manager/preallocator/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/preallocator/worker.js -------------------------------------------------------------------------------- /modules/manager/queuestore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/queuestore.js -------------------------------------------------------------------------------- /modules/manager/renamer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/renamer.js -------------------------------------------------------------------------------- /modules/manager/speedstats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/speedstats.js -------------------------------------------------------------------------------- /modules/manager/verificator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/verificator.js -------------------------------------------------------------------------------- /modules/manager/visitormanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/visitormanager.js -------------------------------------------------------------------------------- /modules/manager/worker_posix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/manager/worker_posix.js -------------------------------------------------------------------------------- /modules/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/preferences.js -------------------------------------------------------------------------------- /modules/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/prompts.js -------------------------------------------------------------------------------- /modules/support/alertservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/alertservice.js -------------------------------------------------------------------------------- /modules/support/atoms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/atoms.js -------------------------------------------------------------------------------- /modules/support/batchgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/batchgen.js -------------------------------------------------------------------------------- /modules/support/bytebucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/bytebucket.js -------------------------------------------------------------------------------- /modules/support/contenthandling-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/contenthandling-content.js -------------------------------------------------------------------------------- /modules/support/contenthandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/contenthandling.js -------------------------------------------------------------------------------- /modules/support/cothreads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/cothreads.js -------------------------------------------------------------------------------- /modules/support/defer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/defer.js -------------------------------------------------------------------------------- /modules/support/domainprefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/domainprefs.js -------------------------------------------------------------------------------- /modules/support/downloadHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/downloadHelper.js -------------------------------------------------------------------------------- /modules/support/fileextsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/fileextsheet.js -------------------------------------------------------------------------------- /modules/support/filtermanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/filtermanager.js -------------------------------------------------------------------------------- /modules/support/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/filters.json -------------------------------------------------------------------------------- /modules/support/historymanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/historymanager.js -------------------------------------------------------------------------------- /modules/support/iconcheat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/iconcheat.js -------------------------------------------------------------------------------- /modules/support/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/icons.js -------------------------------------------------------------------------------- /modules/support/loggedprompter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/loggedprompter.js -------------------------------------------------------------------------------- /modules/support/mediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/mediator.js -------------------------------------------------------------------------------- /modules/support/memoize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/memoize.js -------------------------------------------------------------------------------- /modules/support/memorypressure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/memorypressure.js -------------------------------------------------------------------------------- /modules/support/metalinker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/metalinker.js -------------------------------------------------------------------------------- /modules/support/movefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/movefile.js -------------------------------------------------------------------------------- /modules/support/movefile_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/movefile_worker.js -------------------------------------------------------------------------------- /modules/support/observers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/observers.js -------------------------------------------------------------------------------- /modules/support/optimpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/optimpl.js -------------------------------------------------------------------------------- /modules/support/overlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/overlays.js -------------------------------------------------------------------------------- /modules/support/pbm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/pbm.js -------------------------------------------------------------------------------- /modules/support/proxyprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/proxyprovider.js -------------------------------------------------------------------------------- /modules/support/regexpmerger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/regexpmerger.js -------------------------------------------------------------------------------- /modules/support/requestmanipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/requestmanipulation.js -------------------------------------------------------------------------------- /modules/support/scheduleautostart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/scheduleautostart.js -------------------------------------------------------------------------------- /modules/support/serverlimits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/serverlimits.js -------------------------------------------------------------------------------- /modules/support/stringfuncs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/stringfuncs.js -------------------------------------------------------------------------------- /modules/support/textlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/textlinks.js -------------------------------------------------------------------------------- /modules/support/uniquelinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/uniquelinks.js -------------------------------------------------------------------------------- /modules/support/urlmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/support/urlmanager.js -------------------------------------------------------------------------------- /modules/tests/require/cyclicA.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // jshint -W003 3 | exports.a = () => b; 4 | var b = require('./cyclicB'); 5 | -------------------------------------------------------------------------------- /modules/tests/require/cyclicB.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // jshint -W003 3 | var a = require('./cyclicA'); 4 | exports.b = () => a; 5 | -------------------------------------------------------------------------------- /modules/tests/require/recursive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/tests/require/recursive.js -------------------------------------------------------------------------------- /modules/tests/require/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/tests/require/simple.js -------------------------------------------------------------------------------- /modules/tests/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/tests/worker.js -------------------------------------------------------------------------------- /modules/tests/workerFail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/tests/workerFail.js -------------------------------------------------------------------------------- /modules/tests/workerThrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/tests/workerThrow.js -------------------------------------------------------------------------------- /modules/thirdparty/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/thirdparty/xregexp.js -------------------------------------------------------------------------------- /modules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/utils.js -------------------------------------------------------------------------------- /modules/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/modules/version.js -------------------------------------------------------------------------------- /tests/data/compressed.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/compressed.gz -------------------------------------------------------------------------------- /tests/data/metalink/blank.meta4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/metalink/blank.metalink: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/metalink/corrupt_hash.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/corrupt_hash.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/corrupt_hash.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/corrupt_hash.metalink -------------------------------------------------------------------------------- /tests/data/metalink/emptyDownloadFile.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/emptyDownloadFile.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/emptyFile.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/emptyFile.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/emptyFile.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/emptyFile.metalink -------------------------------------------------------------------------------- /tests/data/metalink/emptyFilesNode.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/emptyFilesNode.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/emptyFilesNode.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/emptyFilesNode.metalink -------------------------------------------------------------------------------- /tests/data/metalink/emptyUrls.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/emptyUrls.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/emptyUrls.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/emptyUrls.metalink -------------------------------------------------------------------------------- /tests/data/metalink/hash.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/hash.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/hash.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/hash.metalink -------------------------------------------------------------------------------- /tests/data/metalink/invalid_encoding.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/invalid_encoding.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/invalid_metalink.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/invalid_metalink.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/invalid_namespace.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/invalid_namespace.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/invalid_pieces.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/invalid_pieces.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/invalid_pieces.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/invalid_pieces.metalink -------------------------------------------------------------------------------- /tests/data/metalink/invalid_version.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/invalid_version.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/iso_encoding.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/iso_encoding.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/iso_encoding.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/iso_encoding.metalink -------------------------------------------------------------------------------- /tests/data/metalink/kernel.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/kernel.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/kernel.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/kernel.metalink -------------------------------------------------------------------------------- /tests/data/metalink/priority_hash.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/priority_hash.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/testFile.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/testFile.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/testFile.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/testFile.metalink -------------------------------------------------------------------------------- /tests/data/metalink/utf.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/utf.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/utf.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/utf.metalink -------------------------------------------------------------------------------- /tests/data/metalink/windows_1252.meta4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/windows_1252.meta4 -------------------------------------------------------------------------------- /tests/data/metalink/windows_1252.metalink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/data/metalink/windows_1252.metalink -------------------------------------------------------------------------------- /tests/dta-tests.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/dta-tests.xul -------------------------------------------------------------------------------- /tests/general/testApiJSM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/general/testApiJSM.js -------------------------------------------------------------------------------- /tests/general/testCoThreads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/general/testCoThreads.js -------------------------------------------------------------------------------- /tests/general/testConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/general/testConstants.js -------------------------------------------------------------------------------- /tests/general/testGlue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/general/testGlue.js -------------------------------------------------------------------------------- /tests/general/testPreferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/general/testPreferences.js -------------------------------------------------------------------------------- /tests/general/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/general/testUtils.js -------------------------------------------------------------------------------- /tests/general/testVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/general/testVersion.js -------------------------------------------------------------------------------- /tests/general/testXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/general/testXML.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/manager/testConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/manager/testConnection.js -------------------------------------------------------------------------------- /tests/manager/testDecompressor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/manager/testDecompressor.js -------------------------------------------------------------------------------- /tests/manager/testImex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/manager/testImex.js -------------------------------------------------------------------------------- /tests/manager/testPreallocator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/manager/testPreallocator.js -------------------------------------------------------------------------------- /tests/manager/testRenamer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/manager/testRenamer.js -------------------------------------------------------------------------------- /tests/manager/testVisitorManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/manager/testVisitorManager.js -------------------------------------------------------------------------------- /tests/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/qunit.css -------------------------------------------------------------------------------- /tests/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/qunit.js -------------------------------------------------------------------------------- /tests/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/runner.js -------------------------------------------------------------------------------- /tests/support/metalinkHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/metalinkHelpers.js -------------------------------------------------------------------------------- /tests/support/testAlertservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testAlertservice.js -------------------------------------------------------------------------------- /tests/support/testAtoms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testAtoms.js -------------------------------------------------------------------------------- /tests/support/testBatchgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testBatchgen.js -------------------------------------------------------------------------------- /tests/support/testDefer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testDefer.js -------------------------------------------------------------------------------- /tests/support/testDomainprefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testDomainprefs.js -------------------------------------------------------------------------------- /tests/support/testFileextsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testFileextsheet.js -------------------------------------------------------------------------------- /tests/support/testFilterManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testFilterManager.js -------------------------------------------------------------------------------- /tests/support/testHistorymanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testHistorymanager.js -------------------------------------------------------------------------------- /tests/support/testMemoize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testMemoize.js -------------------------------------------------------------------------------- /tests/support/testMemoryPressure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testMemoryPressure.js -------------------------------------------------------------------------------- /tests/support/testMetalinker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testMetalinker.js -------------------------------------------------------------------------------- /tests/support/testMovefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testMovefile.js -------------------------------------------------------------------------------- /tests/support/testObservers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testObservers.js -------------------------------------------------------------------------------- /tests/support/testOptimpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testOptimpl.js -------------------------------------------------------------------------------- /tests/support/testPBM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testPBM.js -------------------------------------------------------------------------------- /tests/support/testProxyProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testProxyProvider.js -------------------------------------------------------------------------------- /tests/support/testRequestManipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testRequestManipulation.js -------------------------------------------------------------------------------- /tests/support/testServerLimits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testServerLimits.js -------------------------------------------------------------------------------- /tests/support/testStringfuncs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testStringfuncs.js -------------------------------------------------------------------------------- /tests/support/testTextLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/downthemall/downthemall-legacy/HEAD/tests/support/testTextLinks.js --------------------------------------------------------------------------------