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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |