Unlocker

Unlocker

Use Websites without having to login, currently supports: Instagram

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Unlocker",
  "version": "1.0",
  "description": "Use Websites without having to login, currently supports: Instagram",
  "author": "baris, alperen",
  "icons": {
    "16": "images/unlocked16.png",
    "32": "images/unlocked32.png",
    "128": "images/unlocked128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "instagram.js"
      ]
    }
  ],
  "manifest_version": 2
}