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
公式URL 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
Eメール [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"
    }
}