picross

picross

An extension that automates certain strategies on Henry Liou's picross game

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "picross",
  "version": "0.0.4",
  "description": "An extension that automates certain strategies on Henry Liou's picross game",
  "icons": {
    "16": "img/pi16.png",
    "48": "img/pi48.png",
    "128": "img/pi128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "img/pi16.png",
      "32": "img/pi32.png"
    },
    "default_title": "Picross Solver",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "declarativeContent",
    "activeTab"
  ]
}