picross

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

什麼是picross?

picross是由nogood1125開發的Chrome擴展程式,該擴展的主要功能是“An extension that automates certain strategies on Henry Liou's picross game”。

擴展截圖

screenshot
screenshot

下載picross擴展crx文件

下載picross擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension helps to automate certain repetitive strategies on Henry Liou's picross game (http://liouh.com/picross/). 

Currently, there are two strategies. The row and column summing strategy, which sums the numbers and spaces between them in a row and then fills in blue tiles that must be there.

The edge strategy does two things. First, if a blue cell is near an edge, it takes the first or last hint and then either fills in blues after that or fills in a grey on the edge, if the first hint is too short to reach. Then, if a block on the edge is complete, it caps it off with a grey. When the edge strategy is selected, this process is repeated until it makes no more progress.                    

擴展基本資訊

名稱 picross picross
ID jlaggefombdjhhinfcgnfjjbkmhaahhe
官方網址 https://chrome.google.com/webstore/detail/picross/jlaggefombdjhhinfcgnfjjbkmhaahhe
簡介 An extension that automates certain strategies on Henry Liou's picross game
檔案大小 52.35 KB
安裝次數 69
目前版本 0.0.4
更新時間 2018-06-16
上架時間 2018-06-16
評分 4.00/5 共 1 次評分
開發者 nogood1125
付費類型 free
擴展官網 https://github.com/buonuomo/picross-solver-chrome
支援的語言 en
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"
    ]
}