image-downloader

A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.

什麼是image-downloader?

image-downloader是由joshua.lin870903開發的Chrome擴展程式,該擴展的主要功能是“A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.”。

擴展截圖

screenshot

下載image-downloader擴展crx文件

下載image-downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This addon provides an additional context menu. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened.


Other Features:

Prefix feature - to add prefix to the filename while downloading. Users can customize their prefix list in the "Preference" page.

Twitter credit feature - to automatically detect the username of the Twitter post and add it to the filename when downloading images.


Go to "Homepage" for more detail about this addon.                    

擴展基本資訊

名稱 image-downloader image-downloader
ID dfddfklkbahiihjnfmpflfblacfjojjl
官方網址 https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl
簡介 A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
檔案大小 20.77 KB
安裝次數 39
目前版本 0.2.11
更新時間 2019-09-10
上架時間 2019-09-10
開發者 joshua.lin870903
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/JoshuaLin0903/image-downloader
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "image-downloader",
    "description": "A webextension to make opening\/downloading original(higher quaitiy) images and images organization easier.",
    "version": "0.2.11",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "downloads",
        "storage",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/menu_info.js"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "settings\/options.html"
    }
}