Links

Links

A simple extension to bookmark your favorite pages to read later.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Links",
  "version": "1.0.4",
  "description": "A simple extension to bookmark your favorite pages to read later.",
  "author": "Sunny Srinidhi",
  "background": {
    "persistent": false,
    "scripts": [
      "src/js/custom.js",
      "src/js/background.js"
    ]
  },
  "icons": {
    "128": "assets/images/ic_launcher_web.png"
  },
  "permissions": [
    "activeTab",
    "https://links.contactsunny.com/*",
    "cookies",
    "https://links.contactsunny.com/*"
  ],
  "browser_action": {
    "default_popup": "src/html/popup.html"
  },
  "web_accessible_resources": [
    "src/*"
  ]
}