NetScore Smart Print

Print PDF Page which has user given specific keywords in URL.

NetScore Smart Print là gì?

NetScore Smart Print là một tiện ích mở rộng Chrome được phát triển bởi NetScore Technologies, và tính năng chính của nó là "Print PDF Page which has user given specific keywords in URL.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng NetScore Smart Print

Tải xuống các tệp mở rộng NetScore Smart Print dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        NetScore Smart Print allows users to print PDF/Pages/Docs.. based on your initial setup.
Smart print is based on combination of two keywords selection.

If you want print PDF automatically from the printer,then we have to pass two keywords for this Extension and ON the plugin.

If words in the URL matches with the given keywords then it will print that page directly.

You can anytime enable or disable this extension.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NetScore Smart Print NetScore Smart Print
ID idpjjniajlllnedpgfepapicilfajdmd
URL Chính Thức https://chromewebstore.google.com/detail/netscore-smart-print/idpjjniajlllnedpgfepapicilfajdmd
Mô tả Print PDF Page which has user given specific keywords in URL.
Kích Thước Tệp 22.44 KB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2019-02-11
Ngày Phát Hành 2019-02-11
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển NetScore Technologies
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NetScore Smart Print",
    "description": "Print PDF Page which has user given specific keywords in URL.",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "Netscore.png",
        "default_title": "NetScore Smart Print",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "manifest_version": 2
}