Comic Updater

Comic Updater

A button that replaces the bookmark location that shares the most characters with the current tab with the current tab's location.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Comic Updater",
  "description": "A button that replaces the bookmark location that shares the most characters with the current tab with the current tab's location.",
  "version": "1.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "eventPage.js"
    ]
  },
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "bookmarks",
    "notifications",
    "tabs"
  ],
  "browser_action": {
    "default_title": "Update Closest Bookmark",
    "default_icon": "icon16.png"
  },
  "offline_enabled": true
}