LINE Share

LINE Share

Get more out of LINE by using its Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LINE Share",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "version": "1.0.9",
  "icons": {
    "32": "img/icon_32x32.png",
    "48": "img/icon_48x48.png",
    "64": "img/icon_64x64.png",
    "96": "img/icon_96x96.png",
    "128": "img/icon_128x128.png"
  },
  "action": {
    "default_title": "LINE Share",
    "default_icon": {
      "32": "img/icon_32x32.png",
      "48": "img/icon_48x48.png",
      "64": "img/icon_64x64.png",
      "96": "img/icon_96x96.png",
      "128": "img/icon_128x128.png"
    }
  },
  "permissions": [
    "tabs",
    "activeTab",
    "contextMenus",
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "background": {
    "service_worker": "bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript/tool.js"
      ]
    }
  ]
}