Regexer

Regexer

Are you tired of switching back and forth from terminal to web apps to validate regular expressions? This web extension will help you check matches in a string against a regular expression.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Regxer",
  "version": "1.1.1",
  "description": "Quickly check matches in a string against a regular expression.",
  "homepage_url": "https://github.com/tushararora/regexer",
  "icons": {
    "32": "images/icon_32.svg",
    "48": "images/icon_32.svg",
    "96": "images/icon_32.svg"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "images/icon_32.svg",
    "default_title": "Regexer",
    "default_popup": "addon/popup/index.html"
  }
}