Cloump U-Scraper Plugin

Cloump U-Scraper Plugin

This extension will configure cloump U-Scraper query.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cloump U-Scraper Plugin",
  "author": "KOOK HEA SUNG",
  "description": "This extension will configure cloump U-Scraper query.",
  "version": "0.0.6",
  "homepage_url": "http://www.cloump.com",
  "browser_action": {
    "default_title": "Cloump U-Scraper",
    "default_icon": "icon_16_16.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [],
      "css": [
        "uscraper_selector.css",
        "uscraper_ui.css"
      ]
    }
  ],
  "icons": {
    "16": "icon_16_16.png",
    "48": "icon_48_48.png",
    "128": "icon_128_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistant": true
  },
  "web_accessible_resources": [
    "*"
  ]
}