Strongbox AutoFill

Strongbox Browser AutoFill Extension

Strongbox AutoFill là gì?

Strongbox AutoFill là một tiện ích mở rộng Chrome được phát triển bởi https://strongboxsafe.com, và tính năng chính của nó là "Strongbox Browser AutoFill Extension".

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

screenshot

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

Tải xuống các tệp mở rộng Strongbox AutoFill 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

                        Strongbox AutoFill allows you to access your Strongbox password databases from within your browser so that you can seamlessly fill in usernames, passwords and authentication codes.                    

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

Tên Strongbox AutoFill Strongbox AutoFill
ID mnilpkfepdibngheginihjpknnopchbn
URL Chính Thức https://chromewebstore.google.com/detail/strongbox-autofill/mnilpkfepdibngheginihjpknnopchbn
Mô tả Strongbox Browser AutoFill Extension
Kích Thước Tệp 4.02 MB
Số Lần Cài Đặt 4,888
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2023-12-06
Ngày Phát Hành 2022-09-21
Đánh Giá 3.75/5 Tổng số 20 Đánh Giá
Nhà Phát Triển https://strongboxsafe.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://strongboxsafe.com
URL Trang Trợ Giúp https://strongboxsafe.com/support
URL Trang Chính Sách Bảo Mật https://strongboxsafe.com/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Strongbox AutoFill",
    "version": "1.1.1",
    "icons": {
        "128": "assets\/icons\/app-icon-blue-128.png"
    },
    "content_security_policy": {
        "extension_page": "script-src 'self' ; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/icons\/app-icon-blue-19.png",
                "assets\/icons\/app-icon-grey-38.png",
                "assets\/icons\/app-icon-grey-19.png",
                "assets\/icons\/app-icon-blue-38.png",
                "assets\/icons\/app-icon-circle.png",
                "_favicon\/*",
                "iframe.html"
            ],
            "matches": [
                ""
            ],
            "extension_ids": [
                "*"
            ]
        }
    ],
    "commands": {
        "autofill-first": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "AutoFill"
        },
        "open-inline-menu": {
            "suggested_key": {
                "default": "Ctrl+Shift+O"
            },
            "description": "Show Inline Menu"
        }
    },
    "action": {
        "default_title": "Strongbox",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "assets\/icons\/app-icon-blue-19.png",
            "38": "assets\/icons\/app-icon-blue-38.png"
        }
    },
    "description": "Strongbox Browser AutoFill Extension",
    "short_name": "Strongbox",
    "permissions": [
        "tabs",
        "nativeMessaging",
        "webNavigation",
        "storage",
        "favicon"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "author": "Phoebe Code Limited",
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "js\/background.bundle.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.bundle.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}