Notoy

Notoy

Saves a link to the current active tab with its title, keywords and a long and short description as markdown, Org-Mode or plain text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.0.2",
  "description": "__MSG_extensionDescription__",
  "author": "Roland Csaszar",
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "*://*/",
    "storage",
    "tabs",
    "activeTab",
    "downloads"
  ],
  "icons": {
    "16": "./images/icon_transp_16.png",
    "32": "./images/icon_transp_32.png",
    "48": "./images/icon_transp_48.png",
    "96": "./images/icon_transp_96.png",
    "128": "./images/icon_transp_128.png"
  },
  "browser_action": {
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup.html",
    "browser_style": true,
    "default_icon": {
      "16": "./images/icon_transp_16.png",
      "32": "./images/icon_transp_32.png",
      "48": "./images/icon_transp_48.png",
      "128": "./images/icon_transp_128.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}