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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย One Day Pixel Sorting

ดาวน์โหลดไฟล์ส่วนขยาย One Day Pixel Sorting ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}