Niceloop Printer Extension

Niceloop Printer Extension Using with app.niceloop.com

Niceloop Printer Extensionคืออะไร?

Niceloop Printer Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rice.th และคุณลักษณะหลักของมันคือ "Niceloop Printer Extension Using with app.niceloop.com"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Niceloop Printer Extension

ดาวน์โหลดไฟล์ส่วนขยาย Niceloop Printer Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Niceloop Printer Extension
Using with app.niceloop.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Niceloop Printer Extension Niceloop Printer Extension
ID ilboifjdaokpjbddccfeommkabcaimpe
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/niceloop-printer-extensio/ilboifjdaokpjbddccfeommkabcaimpe
คำอธิบาย Niceloop Printer Extension Using with app.niceloop.com
ขนาดไฟล์ 95.59 KB
จำนวนการติดตั้ง 660
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-02-28
วันที่เผยแพร่ 2019-02-28
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา rice.th
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ th
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Niceloop Printer Extension",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "print-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "webRequest",
        "*:\/\/*\/*"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}