AMC

AMC

AMC - developed by Farhan Miah

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AMC",
  "description": "AMC - developed by Farhan Miah",
  "omnibox": {
    "keyword": "tw"
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "dom.js",
        "background.js",
        "arrays.js",
        "popup.js"
      ],
      "matches": [
        "http://www.isearchfrom.com/*",
        "https://www.isearchfrom.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "arrays.js",
      "jquery.js",
      "dom.js",
      "popup.js"
    ],
    "background_page": [
      "bg.html"
    ]
  },
  "version": "1.7",
  "minimum_chrome_version": "9",
  "manifest_version": 2
}