Nookmark URL Replacer

Nookmark URL Replacer

Chrome extension for Nookmark

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nookmark URL Replacer",
  "omnibox": {
    "keyword": "n"
  },
  "short_name": "Nookmark",
  "version": "1.2.0",
  "description": "Chrome extension for Nookmark",
  "permissions": [
    "activeTab",
    "cookies",
    "storage",
    "*://nookmark.com/*"
  ],
  "optional_permissions": [
    "*://*.google.com/*",
    "<all_urls>",
    "*://kevinafang.com/*"
  ],
  "browser_action": {
    "default_popup": "popup/index.html",
    "default_title": "Nookmark Extension"
  },
  "icons": {
    "16": "assets/logo16.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*.nookmark.com/*",
      "*://kevinafang.com/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}