picross
An extension that automates certain strategies on Henry Liou's picross game
picrossคืออะไร?
picross เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nogood1125 และคุณลักษณะหลักของมันคือ "An extension that automates certain strategies on Henry Liou's picross game"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย picross
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |