I created a simple firefox add-on with the add-on SDK as below, but it only ever works once. I am using version 1.8 of the Add-On SDK.
$ mkdir test_ext
$ cd test_ext
$ cfx init
$ cat >package.json
{
"name": "no2",
"license": "MPL 2.0",
"author": "",
"version": "0.1",
"fullName": "test_ext",
"id": "my-id",
"description": "a basic add-on"
}
$ cat >lib/main.js
<!-- language: lang-js -->
require("page-mod").PageMod({
include: ["*.org"],
contentScript: 'document.body.innerHTML = ' +
'"<h1>this page has been eaten</h1>";'
});
$ cfx run
Now in the browser if I go to w3.org it works. If I reload or go to a different .org domain like wwf.org nothing happens. How can I make it test and apply any new page?