Signet

The Signet browser extension is a complement to the Signet USB security device. The Signet browser extension fills in information…

Signetคืออะไร?

Signet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nth Dimension LLC และคุณลักษณะหลักของมันคือ "The Signet browser extension is a complement to the Signet USB security device. The Signet browser extension fills in information…"

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

screenshot

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

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

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

                        The Signet browser extension is a complement to the Signet USB security device.

The Signet browser extension fills in information to web forms when the user presses a button on the Signet device. Its most common use is to fill in username and password data to login to web pages.

The extension functions by establishing a connection to the Signet client which communicates with the Signet USB device to help fill web forms on the pages you visit as well as log you into websites. When a new page is loaded the extension sends information about that page to the Signet client which searches your Signet device's database for any data that can be used to fill out web forms on the page. If any matching data is available pressing the Signet plugin button will request it from the Signet device. When you confirm the request by pressing the Signet device button the data will be entered into your browser. By sending only the requested data to the browser and doing so only when the Signet device's button is pressed your data is less vulnerable even on an insecure system.                    

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

ชื่อ Signet Signet
ID gppbigcoahebbhkhdpdlilkncbedfpbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/signet/gppbigcoahebbhkhdpdlilkncbedfpbm
คำอธิบาย The Signet browser extension is a complement to the Signet USB security device. The Signet browser extension fills in information…
ขนาดไฟล์ 41.28 KB
จำนวนการติดตั้ง 114
เวอร์ชันปัจจุบัน 0.1.2
อัปเดตครั้งล่าสุด 2019-04-25
วันที่เผยแพร่ 2019-04-19
ผู้พัฒนา Nth Dimension LLC
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Signet",
    "author": "Nth Dimension LLC",
    "version": "0.1.2",
    "browser_action": {
        "default_icon": {
            "32": "icons\/icon-32.png",
            "64": "icons\/icon-64.png",
            "128": "icons\/icon-128.png"
        },
        "default_title": "Signet",
        "default_popup": "popup.html"
    },
    "permissions": [
        "webNavigation",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "content-scripts\/autofill.js"
            ]
        }
    ],
    "icons": {
        "32": "icons\/icon-32.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "applications": {
        "gecko": {
            "strict_min_version": "59.0"
        }
    },
    "commands": {
        "login": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Login to current webpage"
        }
    }
}