Pintra

Pintra

This extension allows the user to share images from article to your WP.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pintra",
  "description": "This extension allows the user to share images from article to your WP.",
  "version": "1.8",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "74": "toolbar_icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "config.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "toolbar_icon.png",
    "default_popup": "toolbar_popup.html"
  }
}