├── .gitignore ├── README ├── Rakefile.rb ├── chrome.manifest ├── chrome ├── content │ ├── S3Ajax.js │ ├── accounts.html │ ├── accounts.js │ ├── browse-xslt.html │ ├── browse-xslt.js │ ├── browserOverlay.xul │ ├── createBucket.js │ ├── createBucket.xul │ ├── dnd.js │ ├── evil.html │ ├── keys.xsl │ ├── uploader.js │ └── vendor │ │ ├── humanmsg.css │ │ ├── humanmsg.js │ │ ├── jquery-1.2.3.min.js │ │ ├── jquery.blockUI.js │ │ └── jquery.easing.js └── skin │ ├── accounts.css │ ├── add.png │ ├── arrow_refresh.png │ ├── arrow_up.png │ ├── big-spinner.gif │ ├── delete.png │ ├── help.png │ ├── key.png │ ├── rotate.gif │ ├── s3.png │ ├── spinner.gif │ ├── style.css │ └── toolbarbutton.css ├── components └── S3Protocol.js ├── install.rdf └── modules └── auth.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/README -------------------------------------------------------------------------------- /Rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/Rakefile.rb -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/S3Ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/S3Ajax.js -------------------------------------------------------------------------------- /chrome/content/accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/accounts.html -------------------------------------------------------------------------------- /chrome/content/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/accounts.js -------------------------------------------------------------------------------- /chrome/content/browse-xslt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/browse-xslt.html -------------------------------------------------------------------------------- /chrome/content/browse-xslt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/browse-xslt.js -------------------------------------------------------------------------------- /chrome/content/browserOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/browserOverlay.xul -------------------------------------------------------------------------------- /chrome/content/createBucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/createBucket.js -------------------------------------------------------------------------------- /chrome/content/createBucket.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/createBucket.xul -------------------------------------------------------------------------------- /chrome/content/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/dnd.js -------------------------------------------------------------------------------- /chrome/content/evil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/evil.html -------------------------------------------------------------------------------- /chrome/content/keys.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/keys.xsl -------------------------------------------------------------------------------- /chrome/content/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/uploader.js -------------------------------------------------------------------------------- /chrome/content/vendor/humanmsg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/vendor/humanmsg.css -------------------------------------------------------------------------------- /chrome/content/vendor/humanmsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/vendor/humanmsg.js -------------------------------------------------------------------------------- /chrome/content/vendor/jquery-1.2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/vendor/jquery-1.2.3.min.js -------------------------------------------------------------------------------- /chrome/content/vendor/jquery.blockUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/vendor/jquery.blockUI.js -------------------------------------------------------------------------------- /chrome/content/vendor/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/content/vendor/jquery.easing.js -------------------------------------------------------------------------------- /chrome/skin/accounts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/accounts.css -------------------------------------------------------------------------------- /chrome/skin/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/add.png -------------------------------------------------------------------------------- /chrome/skin/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/arrow_refresh.png -------------------------------------------------------------------------------- /chrome/skin/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/arrow_up.png -------------------------------------------------------------------------------- /chrome/skin/big-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/big-spinner.gif -------------------------------------------------------------------------------- /chrome/skin/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/delete.png -------------------------------------------------------------------------------- /chrome/skin/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/help.png -------------------------------------------------------------------------------- /chrome/skin/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/key.png -------------------------------------------------------------------------------- /chrome/skin/rotate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/rotate.gif -------------------------------------------------------------------------------- /chrome/skin/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/s3.png -------------------------------------------------------------------------------- /chrome/skin/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/spinner.gif -------------------------------------------------------------------------------- /chrome/skin/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/style.css -------------------------------------------------------------------------------- /chrome/skin/toolbarbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/chrome/skin/toolbarbutton.css -------------------------------------------------------------------------------- /components/S3Protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/components/S3Protocol.js -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/install.rdf -------------------------------------------------------------------------------- /modules/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherjesse/s3/HEAD/modules/auth.js --------------------------------------------------------------------------------