9Gag enhancer

Allows to download images

什麼是9Gag enhancer?

9Gag enhancer是由https://mantas.app開發的Chrome擴展程式,該擴展的主要功能是“Allows to download images”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載9Gag enhancer擴展crx文件

下載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
官方網址 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\/*"
            ]
        }
    ]
}