javascript regexp tester.

javascript regexp tester.

regular expression test by javascript.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "javascript regexp tester.",
  "version": "1.0.5",
  "description": "regular expression test by javascript.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html",
    "default_title": "javascript regexp tester"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jsc/defs.js",
        "jsc/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "128": "icon128.png"
  }
}