From 10ced96cb445e21e4d9e6d29420f194e6a0041e5 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Tue, 14 Jan 2014 01:44:24 +0200 Subject: Initial project files --- README.md | 20 ++++++++++++++++++++ doc/main.md | 0 lib/main.js | 0 package.json | 9 +++++++++ test/test-main.js | 12 ++++++++++++ 5 files changed, 41 insertions(+) create mode 100644 README.md create mode 100644 doc/main.md create mode 100644 lib/main.js create mode 100644 package.json create mode 100644 test/test-main.js diff --git a/README.md b/README.md new file mode 100644 index 0000000..178edef --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Free Haaretz (Firefox Edition) + +A nefarious Firefox extension that easily bypasses the Haaretz paywall. + +If things aren't working as expected, make sure to reinstall (update) the extension from time to time, to make sure you have the latest code. + + +## Install + + 1. Download the [extension ZIP file](https://github.com/yuvadm/free-haaretz-ff/archive/master.zip), also located on the right side bar. + + 2. Unzip the file. + + 3. ??? + +## License + +This code is in the Public Domain, do whatever you want with it, I'm not responsible. + +![Public Domain](https://i.creativecommons.org/p/mark/1.0/88x31.png) diff --git a/doc/main.md b/doc/main.md new file mode 100644 index 0000000..e69de29 diff --git a/lib/main.js b/lib/main.js new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json new file mode 100644 index 0000000..03578c9 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "name": "fffree-haaretz", + "title": "fffree-haaretz", + "id": "jid1-QL2xtvfKt4r4kA", + "description": "a basic add-on", + "author": "", + "license": "MPL 2.0", + "version": "0.1" +} diff --git a/test/test-main.js b/test/test-main.js new file mode 100644 index 0000000..147f98a --- /dev/null +++ b/test/test-main.js @@ -0,0 +1,12 @@ +var main = require("./main"); + +exports["test main"] = function(assert) { + assert.pass("Unit test running!"); +}; + +exports["test main async"] = function(assert, done) { + assert.pass("async Unit test running!"); + done(); +}; + +require("sdk/test").run(exports); -- cgit v1.3.1