Programming Tips

Programming Tips

Shows programming tips when you open a new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Programming Tips",
  "manifest_version": 2,
  "description": "Shows programming tips when you open a new tab",
  "version": "1.1.0",
  "permissions": [
    "storage",
    "https://hackr.io/"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "icons": {
    "128": "code-logo.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://cdn.firebase.com https://*.firebaseio.com https://www.gstatic.com https://www.google-analytics.com https://www.googletagmanager.com; object-src 'self'"
}