copy-abstract-as-iframe

copy-abstract-as-iframe

You can copy iframe text for embed Abstract.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "copy-abstract-as-iframe",
  "author": "Akira HIRATA",
  "description": "You can copy iframe text for embed Abstract.",
  "version": "1.0.5",
  "manifest_version": 2,
  "web_accessible_resources": [
    "*"
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.goabstract.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://*.abstract.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://app.goabstract.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://app.abstract.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://share.goabstract.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}