AutoScript

AutoScript

Save and automatically run bookmarklets. Use regular expressions to match urls on the Options page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AutoScript",
  "description": "Save and automatically run bookmarklets. Use regular expressions to match urls on the Options page.",
  "version": "0.7",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/scripter.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "browser_action": {
    "name": "AutoScript",
    "default_popup": "popup.html",
    "default_icon": "images/48.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "storage",
    "https://*/*",
    "contextMenus"
  ]
}