Gif Delayer

Gif Delayer delays playing gifs until they are fully downloaded.

Gif Delayerคืออะไร?

Gif Delayer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Raymond May Jr. และคุณลักษณะหลักของมันคือ "Gif Delayer delays playing gifs until they are fully downloaded."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gif Delayer

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

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

                        Gif Delayer solves one of the dumbest first-world problems by hiding all gifs until they have fully loaded.  Never again will you have to see stuttering gifs that start playing before being fully downloaded.  And you will no longer have to wait until a gif loops to see the beginning.

0.1.1
- Fix issue with gif urls not showing gif and prevent fetching of 'undefined' images.

0.1.0
- display gif's total size while loading when available

0.0.9
- fix bug preventing standalone gifs from ever loading

0.0.8
- fix bug overriding default gif styling on certain websites

0.0.7
- fix bug preventing gifs from loading on Wolfram Alpha

0.0.6
- more efficient loading hooks
- remove cruft from package (moving common code to submodule for FF/Safari releases)

0.0.5
- added css spinner to loading text
- remove absolute positioning from loading text

0.0.4
- show gif if any errors
- clean up code
- log messages to console
- use all_urls for injection matching

0.0.3
 - Tracks loaded and loading gifs to reduce duplicate resource requests if gif already cached for the page
 - Should not hide buttons in GMail - not working 100%, sometimes navigation buttons still hidden until you hover them, or scroll the page

0.0.2
 - Handle gifs added to the DOM after initial load properly.
 - Works with Hover Zoom                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gif Delayer Gif Delayer
ID cmfcdkambpljcndgdmaccaagladfnepa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gif-delayer/cmfcdkambpljcndgdmaccaagladfnepa
คำอธิบาย Gif Delayer delays playing gifs until they are fully downloaded.
ขนาดไฟล์ 108 KB
จำนวนการติดตั้ง 8,154
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2015-03-04
วันที่เผยแพร่ 2015-03-03
คะแนน 3.69/5 รวมทั้งหมด 132 คะแนน
ผู้พัฒนา Raymond May Jr.
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/octatone/Gif-Delayer/
URL หน้าช่วยเหลือ https://github.com/octatone/gif-delayer/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gif Delayer",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Gif Delayer delays playing gifs until they are fully downloaded.",
    "homepage_url": "https:\/\/github.com\/octatone\/Gif-Delayer",
    "icons": {
        "48": "src\/icons\/icon48.png",
        "128": "src\/icons\/icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/inject\/vendor\/jquery-2.0.3.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "*:\/\/*\/"
    ]
}