Click & Print

Printing an element from a webpage in one click.

Click & Print란 무엇입니까?

Click & Print은(는) nicoula에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Printing an element from a webpage in one click."입니다.

확장 프로그램 스크린샷

screenshot

Click & Print 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It's a chrome extension used for printing an element from a webpage in one click.

To avoid the print preview from chrome, you have to change the shortcut of chrome.
Old one: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
New one: ""C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk-printing

Then, you just have to go to the options page, configure the id(html id of the element) you would like to print and that's it!

In the next update, I will include a new feature which doesn't need to be a developer to use it i.e. you will just have to right click on the element you want to print and select "configure for Click & Print".

If you would like a new feature or if there is a bug, please let me know in the comment section.                    

확장 프로그램 기본 정보

이름 Click & Print Click & Print
ID plgkocaojdkhnjehoddjmblahknnijdj
공식 URL https://chrome.google.com/webstore/detail/click-print/plgkocaojdkhnjehoddjmblahknnijdj
설명 Printing an element from a webpage in one click.
파일 크기 9.11 KB
설치 횟수 1,000
현재 버전 1.1
최근 업데이트 2016-05-24
출시 날짜 2016-05-24
평점 3.50/5 총 4 개의 평점
개발자 nicoula
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click & Print",
    "version": "1.1",
    "description": "Printing an element from a webpage in one click.",
    "manifest_version": 2,
    "options_page": "options.html",
    "icons": {
        "16": "img\/print_16x16.png",
        "48": "img\/print_48x48.png",
        "128": "img\/print_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Impression ticket",
        "default_icon": {
            "16": "img\/print_16x16.png",
            "48": "img\/print_48x48.png",
            "128": "img\/print_128x128.png"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}