├── GPL ├── LICENSE ├── chrome.manifest ├── content ├── about.xul ├── add.xul ├── asf.js ├── asf_addedit.js ├── asf_download.js ├── asf_right_click.js ├── common.dtd ├── edit.xul ├── help │ ├── about.xhtml │ ├── help.xhtml │ ├── install.xhtml │ ├── regexp.xhtml │ ├── update.xhtml │ └── variables.xhtml ├── info_save_ff2-3.txt ├── options.xul ├── overlay_preferences.xul ├── overlay_unknownContentType.xul └── regexp.xul ├── defaults └── preferences │ └── asf.js ├── icon.png ├── install.rdf ├── locale ├── cs │ ├── about.dtd │ ├── asf.dtd │ ├── asf.properties │ ├── help.dtd │ ├── regexp.dtd │ └── variables.dtd ├── en-US │ ├── about.dtd │ ├── asf.dtd │ ├── asf.properties │ ├── help.dtd │ ├── regexp.dtd │ └── variables.dtd ├── fr │ ├── about.dtd │ ├── asf.dtd │ ├── asf.properties │ ├── help.dtd │ ├── regexp.dtd │ └── variables.dtd ├── it │ ├── about.dtd │ ├── asf.dtd │ ├── asf.properties │ ├── help.dtd │ ├── regexp.dtd │ └── variables.dtd ├── ru │ ├── about.dtd │ ├── asf.dtd │ ├── asf.properties │ ├── help.dtd │ ├── regexp.dtd │ └── variables.dtd └── sv-SE │ ├── about.dtd │ ├── asf.dtd │ ├── asf.properties │ ├── help.dtd │ ├── regexp.dtd │ └── variables.dtd └── skin ├── add.png ├── asf-icon.png ├── asf-icon_16x16.png ├── asf-icon_24x24.png ├── asf-icon_32x32.png ├── delete.png ├── delete_disabled.png ├── down.png ├── down_disabled.png ├── help_page ├── asf-icon.png ├── firefox_default_icon.png ├── logo_project_left.jpg ├── logo_project_right.jpg ├── mozilla_default_icon.png ├── screen_apps_cs.png ├── screen_apps_en.png ├── screen_apps_fr.png ├── screen_apps_ru.png ├── screen_apps_sv.png ├── screen_asf102-setbyfilters_cs.png ├── screen_asf102-setbyfilters_en.png ├── screen_asf102-setbyfilters_fr.png ├── screen_asf102-setbyfilters_sv.png ├── screen_main_cs.png ├── screen_main_en.png ├── screen_main_fr.png ├── screen_main_sv.png ├── screen_save_cs.png ├── screen_save_en.png ├── screen_save_fr.png ├── screen_save_ru.png ├── screen_save_sv.png ├── screen_savedialog-alwaysdothis_cs.png ├── screen_savedialog-alwaysdothis_en.png ├── screen_savedialog-alwaysdothis_fr.png ├── screen_savedialog-alwaysdothis_sv.png └── style.css ├── off.png ├── on.png ├── style.css ├── up.png └── up_disabled.png /LICENSE: -------------------------------------------------------------------------------- 1 | Automatic Save Folder 2 | http://asf.mangaheart.org 3 | Copyright (C) 2007-2009 Eric Cassar (cyan@mangaheart.org) 4 | Contributor(s): 2009 Ted Gifford 5 | 6 | 7 | "Automatic Save Folder" is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 2 of the License, or 10 | (at your option) any later version. 11 | 12 | "Automatic Save Folder" is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with "Automatic Save Folder". If not, see . 19 | 20 | This applies to all source code files. 21 | 22 | 23 | 24 | 25 | "Automatic Save Folder" contains pieces of code taken or inspired from: 26 | 27 | - Folder pickup: 28 | DownThemAll! Copyright (C) 2007-2008 Federico Parodi, Stefano Verna and Nils Maier. 29 | 30 | - Moving filters: 31 | http://captain.at 32 | 33 | -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- 1 | content asf content/ 2 | 3 | locale asf cs locale/cs/ 4 | locale asf en-US locale/en-US/ 5 | locale asf fr locale/fr/ 6 | locale asf ru locale/ru/ 7 | locale asf sv-SE locale/sv-SE/ 8 | 9 | skin asf classic/1.0 skin/ 10 | 11 | overlay chrome://browser/content/browser.xul chrome://asf/content/overlay_preferences.xul 12 | overlay chrome://mozapps/content/downloads/unknownContentType.xul chrome://asf/content/overlay_unknownContentType.xul 13 | 14 | style chrome://global/content/customizeToolbar.xul chrome://asf/skin/style.css -------------------------------------------------------------------------------- /content/about.xul: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 12 | %aboutDTD; 13 | 14 | %commonDTD; 15 | ]> 16 | 22 |