HashLighter 2

HashLighter 2

Highlight and scrape #hashtags and @at-tags on the fly. A small extension that saves you expensive time!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "js/jquery.js",
      "js/baseFunctions.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/19x19.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/jquery.js",
        "js/baseFunctions.js",
        "js/main.js",
        "js/content-action.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ]
    }
  ],
  "description": "Highlight and scrape #hashtags and @at-tags on the fly. A small extension that saves you expensive time!",
  "icons": {
    "19": "img/19x19.png",
    "48": "img/48x48.png",
    "100": "img/100x100.png",
    "128": "img/128x128.png"
  },
  "manifest_version": 2,
  "name": "HashLighter 2",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "file://*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "9.0",
  "content_security_policy": "script-src 'self' https://checkout.stripe.com/checkout.js; object-src 'self'"
}