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」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
ID | jlaggefombdjhhinfcgnfjjbkmhaahhe |
公式URL | 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" ] } |