9Gag enhancer

Allows to download images

9Gag enhancerคืออะไร?

9Gag enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mantas.app และคุณลักษณะหลักของมันคือ "Allows to download images"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 9Gag enhancer

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

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

                        This extension allows to download 9gag.com images in .jpeg instead of .webp format. Underneath image on right side the is separate download icon for conveniently download image without hassle. Also, it modifies HTML so browser is forced to download ..jpeg file format when user clicks right mouse  button on image.

Video controls can be shown on videos and GIFs automatically.
Videos can be set to auto play with sound.

Triple clicking on empty space or quickly scrolling up and down at least four times,  extension automatically opens predefined web page, if manager unexpectedly appears next to your table.

Background and text colors can be customized. This still needs some (a lot) improvement.

Quickly search and insert gifs or images from https://memeful.com/ to comments using new icon in comment box.                    

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

ชื่อ 9Gag enhancer 9Gag enhancer
ID onilkijoikplbmmjmeahnmffhpafcgai
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/9gag-enhancer/onilkijoikplbmmjmeahnmffhpafcgai
คำอธิบาย Allows to download images
ขนาดไฟล์ 210 KB
จำนวนการติดตั้ง 49
เวอร์ชันปัจจุบัน 1.3.3
อัปเดตครั้งล่าสุด 2022-12-31
วันที่เผยแพร่ 2020-08-05
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://mantas.app
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/piktasdiedas/9gagenhancer
URL หน้าช่วยเหลือ https://mantas.app
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "9Gag enhancer",
    "description": "Allows to download images",
    "version": "1.3.3",
    "icons": {
        "16": "images\/icons\/i_16.png",
        "24": "images\/icons\/i_24.png",
        "32": "images\/icons\/i_32.png",
        "128": "images\/icons\/i_128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icons\/i_16.png",
            "24": "images\/icons\/i_24.png",
            "32": "images\/icons\/i_32.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/9gag.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.*"
            ],
            "matches": [
                "https:\/\/9gag.com\/*"
            ]
        }
    ]
}