Wine - Share text fragments

Wine - Share text fragments

Page fragment link creator. This extension lets you share particular text fragments with anyone by generating an unique URL for that fragment alone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Wine",
  "version": "2.3",
  "description": "Page fragment link creator. If you are enabling this after disabling it from here, you will need to refresh the page for this extension to work",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Toggle button",
    "default_icon": {
      "16": "images/enabled/wine_enabled16.png",
      "32": "images/enabled/wine_enabled32.png",
      "48": "images/enabled/wine_enabled48.png",
      "128": "images/enabled/wine_enabled128.png"
    }
  },
  "icons": {
    "16": "images/enabled/wine_enabled16.png",
    "24": "images/enabled/wine_enabled24.png",
    "32": "images/enabled/wine_enabled32.png",
    "48": "images/enabled/wine_enabled48.png",
    "96": "images/enabled/wine_enabled96.png",
    "128": "images/enabled/wine_enabled128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "app.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "manifest_version": 2
}