eaSync Web Scraper

eaSync Web Scraper

Extensión para Google Chrome™ que permite la extracción de información de Páginas Web en formato RSS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.0.9",
  "short_name": "EASYNC",
  "name": "eaSync Web Scraper",
  "description": "Extensión para Google Chrome™ que permite la extracción de información de Páginas Web en formato RSS",
  "author": "IK4-TEKNIKER",
  "icons": {
    "16": "img/easync-16.png",
    "32": "img/easync-32.png",
    "64": "img/easync-64.png",
    "128": "img/easync-128.png"
  },
  "homepage_url": "http://easync.tekniker.es",
  "minimum_chrome_version": "40.0",
  "offline_enabled": false,
  "browser_action": {
    "default_icon": {
      "16": "img/easync-16.png",
      "32": "img/easync-32.png",
      "64": "img/easync-64.png",
      "128": "img/easync-128.png"
    },
    "default_title": "eaSync Web Scraper"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/jquery-ext.js",
        "js/easync-match.js",
        "js/easync-xpath.js",
        "js/bootstrap.min.js"
      ]
    }
  ],
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "web_accessible_resources": [
    "img/easync-16.png",
    "img/easync-32.png",
    "img/easync-64.png",
    "img/easync-128.png",
    "img/error.png",
    "img/success.png",
    "css/bootstrap.min.css",
    "css/easync.css"
  ]
}