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文件

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

擴展使用說明

                        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
官方網址 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"
    ]
}