clip it for later

clip it for later

‘clip it for later’ is a simple and clean bookmark app for articles, especially for those who ‘chronically’ open 1000+ tabs in one…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "clip it for later",
  "permissions": [
    "contextMenus",
    "management",
    "tabs",
    "activeTab",
    "storage",
    "<all_urls>"
  ],
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Alt+D",
        "mac": "Alt+D"
      },
      "description": "shortcut for add URL"
    }
  },
  "version": "0.97",
  "icons": {
    "16": "images/icon48.png",
    "48": "images/icon128.png",
    "128": "images/icon256.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon48.png",
      "38": "images/icon128.png"
    },
    "default_popup": "src/popup.html"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*",
    "src/newtab.html",
    "src/newtab.css",
    "src/newtab.js"
  ]
}