Cute Save Button

Little button to save images and webms in one click or with any hotkeys. Praise cute!

Cute Save Button란 무엇입니까?

Cute Save Button은(는) De_zu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Little button to save images and webms in one click or with any hotkeys. Praise cute!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Cute Save Button 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This button will appear on any image/video under your mouse cursor so you could quickly save it in one click or with custom hotkeys, no popups, no menus, no needless movements.

Click on the button or simply press Space when the button is appeared to save the file.

You can set any amount of save locations accessible via customizable hotkeys.

- right click (or Ctrl+Space) to save with original filename (works on most popular imageboards)
- middle click to save the file and copy its url to clipboard
- you can set your custom icon so the button would be even more cuter (or not)
- always downloads original full-sized images (currently supported: vk, twitter, tumblr, instagram)
- Alt+Q to hide the button
- hold Shift for "deep scan" (checks for background-image and ignores filtering by image size)
- hold Ctrl to prevent button from hiding (can be useful if button somehow appeared outside of the image area)
- make sure your hotkey won't interfere with browser reserved hotkeys                    

확장 프로그램 기본 정보

이름 Cute Save Button Cute Save Button
ID foblnmhpgiilabdcbnfgoheplajhompg
공식 URL https://chromewebstore.google.com/detail/cute-save-button/foblnmhpgiilabdcbnfgoheplajhompg
설명 Little button to save images and webms in one click or with any hotkeys. Praise cute!
파일 크기 42.49 KB
설치 횟수 3,551
현재 버전 0.8.2
최근 업데이트 2023-05-14
출시 날짜 2018-10-30
평점 4.68/5 총 28 개의 평점
개발자 De_zu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://addons.mozilla.org/en-US/firefox/addon/cute-save-button/
도움말 페이지 URL https://github.com/Dezaimasu/cute-button
지원되는 언어 en,ru,uk,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cute Save Button",
    "version": "0.8.2",
    "description": "__MSG_extensionDescription__",
    "author": "Deil",
    "default_locale": "en",
    "icons": {
        "48": "bestgirl.png"
    },
    "permissions": [
        "downloads",
        "storage",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "js\/settings-default.js",
            "js\/background.js",
            "js\/download.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/content-script.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "bestgirl.png"
    ],
    "options_ui": {
        "page": "settings.html"
    },
    "browser_action": {
        "default_icon": {
            "48": "bestgirl.png"
        }
    }
}