picross

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

picross क्या है?

picross nogood1125 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that automates certain strategies on Henry Liou's picross game"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में picross एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.                    

एक्सटेंशन की मूल जानकारी

नाम picross picross
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"
    ]
}