Solve as Puzzle

Solve as Puzzle

Solve any image as a jigsaw puzzle

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Solve as Puzzle",
  "description": "Solve any image as a jigsaw puzzle",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon48.png",
    "default_title": "Puzzles with Friends"
  },
  "version": "0.43",
  "permissions": [
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "manifest_version": 2
}