Passwords for Nextcloud Browser Extension

The official browser extension for Passwords for Nextcloud

Passwords for Nextcloud Browser Extensionคืออะไร?

Passwords for Nextcloud Browser Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mdw และคุณลักษณะหลักของมันคือ "The official browser extension for Passwords for Nextcloud"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Passwords for Nextcloud Browser Extension

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

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

                        This is the official browser extension for the Passwords app for Nextcloud. Use your passwords with ease in the browser and store them securely in your Nextcloud.


Features
● Quickly access any credentials related to the current tab with the extension
● Paste credentials into the current tab by just clicking on them or drag & drop them wherever you like
● Use the powerful search, to find the credentials you need
● Connect as many Nextcloud accounts as you like
● View and browse trough the folders on you Nextcloud
● Generate strong passwords within the extension
● The extension detects new or updated credentials and allows you to save them easily
● Choose from multiple themes, use the theme from your Nextcloud or create your own to match the extension with your browser


Requirements
This extension requires a server on which Nextcloud with the Passwords App is installed. Nextcloud can be downloaded for free from the Nextcloud website. The Passwords App can be downloaded for free from the Nextcloud App Store.

If you need help with the extension, have questions or suggestions, please visit our support website.                    

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

ชื่อ Passwords for Nextcloud Browser Extension Passwords for Nextcloud Browser Extension
ID mhajlicjhgoofheldnmollgbgjheenbi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/passwords-for-nextcloud-b/mhajlicjhgoofheldnmollgbgjheenbi
คำอธิบาย The official browser extension for Passwords for Nextcloud
ขนาดไฟล์ 2.29 MB
จำนวนการติดตั้ง 13,086
เวอร์ชันปัจจุบัน 2.6.0
อัปเดตครั้งล่าสุด 2024-01-21
วันที่เผยแพร่ 2019-05-30
คะแนน 3.96/5 รวมทั้งหมด 45 คะแนน
ผู้พัฒนา mdw
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/marius-wieschollek/passwords-webextension
URL หน้าช่วยเหลือ https://github.com/marius-wieschollek/passwords-webextension/wiki
ภาษาที่รองรับ de,en,fr,nl,tr,da,es,it,lt,hu,pl,sk,sl,fi,sv,cs,el,bg,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "2.6.0.5311",
    "version_name": "2.6.0",
    "description": "__MSG_extensionDescription__",
    "author": "Marius Wieschollek",
    "default_locale": "en",
    "minimum_chrome_version": "92",
    "icons": {
        "16": "img\/passwords-16.png",
        "32": "img\/passwords-32.png",
        "48": "img\/passwords-48.png",
        "96": "img\/passwords-96.png",
        "128": "img\/passwords-128.png"
    },
    "browser_action": {
        "default_icon": "img\/passwords-16.png",
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "html\/popup.html",
        "browser_style": true,
        "theme_icons": [
            {
                "light": "img\/passwords-light.png",
                "dark": "img\/passwords-dark.png",
                "size": 16
            }
        ]
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "html\/options.html"
    },
    "content_security_policy": "script-src 'self' 'wasm-eval' blob:; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/client.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "tabs",
        "storage",
        "clipboardWrite",
        "contextMenus",
        "notifications",
        "webRequest",
        "webRequestBlocking"
    ],
    "optional_permissions": [
        "clipboardRead"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+0"
            }
        }
    }
}