Jump to Anywhere - Speed Browsing with 1click

Jump to Anywhere - Speed Browsing with 1click

The bookmark which sticks a tag in a Web page, and can jump anywhere. Scrolling is not necessary.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.1.63",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon_tag_16_10_3.png",
    "48": "img/icon_tag_48_36_6.png",
    "128": "img/icon_tag_128_96_16.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://www.evernote.com/noteit.*"
      ],
      "css": [
        "lib/jquery/toolbar/jquery.toolbar.css",
        "css/font-awesome.css",
        "css/icomoon.css",
        "css/content.css"
      ],
      "js": [
        "lib/jquery/jquery-1.12.4.min.js",
        "lib/jquery/toolbar/jquery.toolbar.min.js",
        "lib/buy.js",
        "js/share.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "fonts/*"
  ],
  "background": {
    "scripts": [
      "lib/analytics.js",
      "js/share.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Jump to Anywhere",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "bookmarks",
    "identity"
  ]
}