├── README.txt ├── RELEASE.txt ├── chrome.manifest ├── chrome ├── content │ ├── common.js │ ├── conv_enex2sb.js │ ├── conv_enex2sb.xul │ ├── conv_html2sb.js │ ├── conv_html2sb.xul │ ├── conv_maff2sb.js │ ├── conv_maff2sb.xul │ ├── conv_sb2enex.js │ ├── conv_sb2enex.xul │ ├── conv_sb2epub.js │ ├── conv_sb2epub.xul │ ├── conv_sb2maff.js │ ├── conv_sb2maff.xul │ ├── conv_sb2maff2.js │ ├── conv_sb2maff2.xul │ ├── conv_sb2sf.js │ ├── conv_sb2sf.xul │ ├── conv_sb2zip.js │ ├── conv_sb2zip.xul │ ├── conv_sb2zip2.js │ ├── conv_sb2zip2.xul │ ├── converter.js │ ├── converter.xul │ ├── lib │ │ ├── maf.js │ │ └── md5.js │ ├── mimetype.zip │ ├── prefsDialog.xul │ └── scrapbookOverlay.xul ├── locale │ ├── en-US │ │ ├── conv.dtd │ │ ├── converter.dtd │ │ ├── prefsDialog.dtd │ │ └── scrapbookOverlay.dtd │ └── zh-TW │ │ ├── conv.dtd │ │ ├── converter.dtd │ │ ├── prefsDialog.dtd │ │ └── scrapbookOverlay.dtd └── skin │ └── sbconv.png ├── defaults └── preferences │ └── sbconv-prefs.js └── install.rdf /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/README.txt -------------------------------------------------------------------------------- /RELEASE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/RELEASE.txt -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/common.js -------------------------------------------------------------------------------- /chrome/content/conv_enex2sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_enex2sb.js -------------------------------------------------------------------------------- /chrome/content/conv_enex2sb.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_enex2sb.xul -------------------------------------------------------------------------------- /chrome/content/conv_html2sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_html2sb.js -------------------------------------------------------------------------------- /chrome/content/conv_html2sb.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_html2sb.xul -------------------------------------------------------------------------------- /chrome/content/conv_maff2sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_maff2sb.js -------------------------------------------------------------------------------- /chrome/content/conv_maff2sb.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_maff2sb.xul -------------------------------------------------------------------------------- /chrome/content/conv_sb2enex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2enex.js -------------------------------------------------------------------------------- /chrome/content/conv_sb2enex.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2enex.xul -------------------------------------------------------------------------------- /chrome/content/conv_sb2epub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2epub.js -------------------------------------------------------------------------------- /chrome/content/conv_sb2epub.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2epub.xul -------------------------------------------------------------------------------- /chrome/content/conv_sb2maff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2maff.js -------------------------------------------------------------------------------- /chrome/content/conv_sb2maff.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2maff.xul -------------------------------------------------------------------------------- /chrome/content/conv_sb2maff2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2maff2.js -------------------------------------------------------------------------------- /chrome/content/conv_sb2maff2.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2maff2.xul -------------------------------------------------------------------------------- /chrome/content/conv_sb2sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2sf.js -------------------------------------------------------------------------------- /chrome/content/conv_sb2sf.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2sf.xul -------------------------------------------------------------------------------- /chrome/content/conv_sb2zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2zip.js -------------------------------------------------------------------------------- /chrome/content/conv_sb2zip.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2zip.xul -------------------------------------------------------------------------------- /chrome/content/conv_sb2zip2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2zip2.js -------------------------------------------------------------------------------- /chrome/content/conv_sb2zip2.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/conv_sb2zip2.xul -------------------------------------------------------------------------------- /chrome/content/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/converter.js -------------------------------------------------------------------------------- /chrome/content/converter.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/converter.xul -------------------------------------------------------------------------------- /chrome/content/lib/maf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/lib/maf.js -------------------------------------------------------------------------------- /chrome/content/lib/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/lib/md5.js -------------------------------------------------------------------------------- /chrome/content/mimetype.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/mimetype.zip -------------------------------------------------------------------------------- /chrome/content/prefsDialog.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/prefsDialog.xul -------------------------------------------------------------------------------- /chrome/content/scrapbookOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/content/scrapbookOverlay.xul -------------------------------------------------------------------------------- /chrome/locale/en-US/conv.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/locale/en-US/conv.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/converter.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/en-US/prefsDialog.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/locale/en-US/prefsDialog.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/scrapbookOverlay.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chrome/locale/zh-TW/conv.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/locale/zh-TW/conv.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/converter.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/zh-TW/prefsDialog.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/locale/zh-TW/prefsDialog.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/scrapbookOverlay.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chrome/skin/sbconv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/chrome/skin/sbconv.png -------------------------------------------------------------------------------- /defaults/preferences/sbconv-prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/defaults/preferences/sbconv-prefs.js -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danny0838/firefox-scrapbook-converter/HEAD/install.rdf --------------------------------------------------------------------------------