Imgur Chrome Extension

Imgur Chrome Extension

This extension shows trending posts on Imgur when a new tab is open

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Imgur Chrome Extension",
  "description": "This extension shows trending posts on Imgur when a new tab is open",
  "version": "1.0",
  "author": "TheMappleKindYeah",
  "homepage_url": "https://github.com/gillesbertaux/imgur-chrome-extension",
  "short_name": "Imgur App",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "imgur.html"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://www.google.com/*"
      ],
      "css": [
        "main.css"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}