Secrets

This browser extension helps you fill logins using information stored in Secrets

Τι είναι το Secrets;

Το Secrets είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://secrets.app, και η κύρια λειτουργία του είναι "This browser extension helps you fill logins using information stored in Secrets".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Secrets

Λήψη αρχείων επέκτασης Secrets σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The Secrets extension for Chrome helps you fill Logins and Credit Card info stored in a locally running Secrets for Mac, or even remotely from Secrets for iOS running on your iPhone or any other iOS device.

With this extension you can use the Logins and Credit Cards you have stored in Secrets to auto-fill them at the click of a button.

This extensions requires Secrets for Mac 2.8.5 or Secrets for iOS 3.4.0.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Secrets Secrets
ID nljhipdleaglbopomanmebenmiibbkmg
Επίσημο URL https://chromewebstore.google.com/detail/secrets/nljhipdleaglbopomanmebenmiibbkmg
Περιγραφή This browser extension helps you fill logins using information stored in Secrets
Μέγεθος Αρχείου 1.51 MB
Αριθμός Εγκαταστάσεων 2,144
Τρέχουσα Έκδοση 2.0.4
Τελευταία Ενημέρωση 2023-11-16
Ημερομηνία Δημοσίευσης 2019-09-19
Αξιολόγηση 4.33/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://secrets.app
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://secrets.app
Διεύθυνση URL της Σελίδας Βοήθειας https://secrets.app/support/
URL της Σελίδας Πολιτικής Απορρήτου https://secrets.app/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Secrets",
    "version": "2.0.4",
    "description": "This browser extension helps you fill logins using information stored in Secrets",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "Icon-16.png",
        "32": "Icon-32.png",
        "64": "Icon-64.png",
        "128": "Icon-128.png"
    },
    "action": {
        "default_icon": {
            "19": "toolbarIcon-color.png",
            "38": "[email protected]"
        },
        "theme_icons": [
            {
                "light": "toolbarIcon-light.png",
                "dark": "toolbarIcon-dark.png",
                "size": 19
            },
            {
                "light": "[email protected]",
                "dark": "[email protected]",
                "size": 38
            }
        ],
        "default_title": "Secrets"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "loginForms.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "loginForms.js",
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "pages\/settings.html",
        "open_in_tab": false
    },
    "permissions": [
        "nativeMessaging",
        "webNavigation",
        "storage",
        "clipboardWrite",
        "notifications",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "pages\/*.css",
                "pages\/i18n\/*",
                "pages\/request.html",
                "pages\/request.js",
                "noise-c.wasm"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "minimum_chrome_version": "88"
}