diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-01-14 01:44:24 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-01-14 01:44:24 +0200 |
| commit | 10ced96cb445e21e4d9e6d29420f194e6a0041e5 (patch) | |
| tree | 3eb76958512080ac1db1a4bbc9f0bace646b0701 | |
Initial project files
| -rw-r--r-- | README.md | 20 | ||||
| -rw-r--r-- | doc/main.md | 0 | ||||
| -rw-r--r-- | lib/main.js | 0 | ||||
| -rw-r--r-- | package.json | 9 | ||||
| -rw-r--r-- | test/test-main.js | 12 |
5 files changed, 41 insertions, 0 deletions
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. + + diff --git a/doc/main.md b/doc/main.md new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/doc/main.md diff --git a/lib/main.js b/lib/main.js new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/lib/main.js 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); |
