Reggie - Expression Tester

Reggie - Expression Tester

Test your regular expressions in javascript. Features: Live results, replace matches, color highlights and saving state.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Brennan Thompson",
  "name": "Reggie - Expression Tester",
  "short_name": "Reggie",
  "description": "Test your regular expressions in javascript. Features: Live results, replace matches, color highlights and saving state.",
  "version": "0.2",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "img/icon-20.png",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "js/events.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "permissions": [
    "storage"
  ]
}