all repos — save-forlater @ 415e0cbe3706c6d7f68cd1b6967776c3b698c4df

Browser add-ons for sending a page via forlater.email

firefox/manifest.json (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
{
  "manifest_version": 2,
  "name": "save forlater",
  "version": "1.0",

  "description": "Generates a mailto link to save pages via forlater.email",

  "icons": {
    "48": "icons/logo-48.png"
  },
  "permissions": [ "activeTab", "contextMenus" ],
  "browser_action": {
    "default_icon": "icons/logo-48.png",
    "default_title": "save forlater"
  },
  "background": {
    "scripts": ["forlater.js"]
  }
}