Modify href

Modify href

A Chrome extension for modifying the href / host / domain of the links on a web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Modify href",
  "description": "A Chrome extension for modifying the href / host / domain of the links on a web page",
  "version": "0.0.4",
  "options_page": "/src/options/options.html",
  "browser_action": {
    "default_icon": "/images/off48.png",
    "default_title": "Click to modify!"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "background": {
    "scripts": [
      "/src/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "/images/off16.png",
    "32": "/images/off32.png",
    "48": "/images/off48.png",
    "64": "/images/off64.png",
    "128": "/images/off128.png"
  },
  "author": "Chang Liu"
}