Lash Story Board

Lash Story Board

Manipulate the DOM when the page is done loading

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lash Story Board",
  "version": "8",
  "manifest_version": 2,
  "description": "Manipulate the DOM when the page is done loading",
  "background": {
    "pages": [
      "background.html"
    ]
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "background.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}