OTP Push

Push OTP code from mobile to browser

Τι είναι το OTP Push;

Το OTP Push είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alexei.volosozhar, και η κύρια λειτουργία του είναι "Push OTP code from mobile to browser".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Nowadays, businesses are commonly using phone numbers for Two-Factor authentication for their services.

There are a variety of ways to verify phone numbers, but a randomly generated one-time password (OTP) sent by SMS is one of the most common. Sending this code back to the service server demonstrates control of the phone number.

The current process disappoints users. Finding an OTP within an SMS message, then copying and pasting it to the form is bulky. The OTP Push lets receive code from a message and transfer it to the connected desktop browser. Chrome extension pastes received code to the input field.
 
The OTP Push helps you to transfer code from SMS to your desktop Chrome browser in an easy way. Just install the mobile app and Chrome extension from the official app stores. Scan the browser extension's QR code by the mobile app to connect your phone to desktop Chrome. Push the code from SMS to the connected browser.
 
It works with a lot of services supporting the SMS Two-Factor Authentication.                    

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

Όνομα OTP Push OTP Push
ID mgajhngbdmahgfgnkomdphmjcgaahfka
Επίσημο URL https://chromewebstore.google.com/detail/otp-push/mgajhngbdmahgfgnkomdphmjcgaahfka
Περιγραφή Push OTP code from mobile to browser
Μέγεθος Αρχείου 1.93 MB
Αριθμός Εγκαταστάσεων 623
Τρέχουσα Έκδοση 1.1.6
Τελευταία Ενημέρωση 2023-08-08
Ημερομηνία Δημοσίευσης 2022-09-12
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής alexei.volosozhar
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.otppush.app/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.1.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlAhevljvDD3QY9fhQJX2I9BV+qtBmwv2hpsiw1YNWY7V+O3ue9YVdfAv0X1kLAX64ospKMiaQGK6tdUsJn\/5QQDoLVkz\/Qcglh714F\/gsKj8FDIcE8iBPP1a4Hhbwq2gBCP9cr+Xo7oZZjrhFICeciV0XjVoJcEeEdj3z55lMxJd0m3ibSPb6XNuEefYGQJJ91HDMnHgRC6m3jfl9jJ\/gunUgUpsQprV1r1OVhsiSQJBlL4NAlnS3xPPqCSvGN8OjvO0SyXRqOlsht+XVbHQNbPsXn\/aGDR+BRRoI9Ys+95LVSTP+TBHTSdsBdVe5KJB2+kI5EuBEzyGrTafjFJudwIDAQAB",
    "oauth2": {
        "client_id": "340770154210-vhk5p71gt9td8ekkngtf5abrb2qkihbf.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "permissions": [
        "storage",
        "background",
        "identity",
        "management"
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_popup": "popup\/login.html"
    },
    "default_locale": "en",
    "host_permissions": [
        "https:\/\/www.gstatic.com\/*",
        "https:\/\/*.firebaseio.com\/*",
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/recaptcha.google.com\/recaptcha\/*"
    ]
}