Automatic Actions Management

Automatic Actions Management

This extension will able to run predefined user events.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Tóth András",
  "name": "Automatic Actions Management",
  "short_name": "AAM",
  "description": "This extension will able to run predefined user events.",
  "version": "1.2",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "css/images/icon48.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "css/images/icon16.png",
    "48": "css/images/icon48.png",
    "128": "css/images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "contextMenus",
    "storage"
  ]
}