One Day Pixel Sorting

Discover each day a new pixel sorted background whenever you open a new tab or Google homepage

One Day Pixel Sorting क्या है?

One Day Pixel Sorting simon.bruno.77 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Discover each day a new pixel sorted background whenever you open a new tab or Google homepage"।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में One Day Pixel Sorting एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Images have been selected from a large panel of pictures which pixels have been sorted using a special algorithme. 

This algorithm is simple. Each line (horizontal or vertical) is processed separately. The algorithm begins with the pixel at one end and begins to record in an array all subsequent pixels having a lower or equal brightness. Once it finds a pixel with higher brightness, it sorts the array of pixels previously created in brightness order and starts a new array. And so on until the end of the line before moving on to the next line. Variations have been added in order to obtain different results.                    

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

नाम One Day Pixel Sorting One Day Pixel Sorting
ID nohbnhhchkhgiaghjaioohlbdpclkaak
आधिकारिक URL https://chromewebstore.google.com/detail/one-day-pixel-sorting/nohbnhhchkhgiaghjaioohlbdpclkaak
विवरण Discover each day a new pixel sorted background whenever you open a new tab or Google homepage
फ़ाइल का आकार 13.5 KB
स्थापना संख्या 61
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2017-05-12
प्रकाशन तिथि 2017-05-11
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर simon.bruno.77
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "One Day Pixel Sorting",
    "description": "Discover each day a new pixel sorted background whenever you open a new tab or Google homepage",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "index.html"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "permissions": [
        "https:\/\/bruno-simon.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "content_scripts\/main.css"
            ],
            "js": [
                "content_scripts\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "assets\/images\/icons\/16x16.png",
        "32": "assets\/images\/icons\/32x32.png",
        "48": "assets\/images\/icons\/48x48.png",
        "128": "assets\/images\/icons\/128x128.png"
    }
}