Mashup

Mashup

Extension tool transform webpage to crawlify states

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "persistent": false,
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "name": "Mashup",
  "description": "Extension tool transform webpage to crawlify states",
  "version": "1.1",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Nodemono"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "template/*",
    "css/style.css",
    "selectorgadget/*",
    "*",
    "imgs/back.png"
  ],
  "permissions": [
    "tabs",
    "notifications",
    "activeTab",
    "https://*/*",
    "http://*/*"
  ]
}