Open With Adobe Illustrator

Open With Adobe Illustrator

Open With Adobe Illustrator is a new companion for web designers, graphic designers and in general whom like to use Illustrator.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "63.1resigned1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "extension.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "scripts/content_script_st.js"
      ],
      "matches": [
        "*://*.barisderin.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "management",
    "downloads",
    "contextMenus",
    "<all_urls>",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "settings/*"
  ],
  "applications": {
    "gecko": {
      "id": "{c6973149-51bd-443a-898c-e4b26d4ee43b}"
    }
  }
}