Product Hunt Twitter

Product Hunt Twitter

Get Product Hunt stats right on your Twitter timeline.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Product Hunt Twitter",
  "version": "0.2.3",
  "author": "Rahul Kapoor",
  "manifest_version": 2,
  "description": "Get Product Hunt stats right on your Twitter timeline.",
  "permissions": [
    "http://www.twitter.com/*",
    "https://www.twitter.com/*",
    "https://api.producthunt.com/*",
    "notifications",
    "storage",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "logo16.png",
      "38": "logo48.png"
    }
  },
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "homepage_url": "https://github.com/rahulkapoor90/ph-twitter",
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "css": [
        "PHstyle.css"
      ],
      "js": [
        "jquery.min.js",
        "twitter.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ]
}