Skip the Envelope

Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…

Was ist Skip the Envelope?

Skip the Envelope ist eine Chrome-Erweiterung, die von emag_eh7 entwickelt wurde, und ihr Hauptmerkmal ist "Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…".

Erweiterungsscreenshots

screenshot

Skip the Envelope-Erweiterungs-CRX-Datei herunterladen

Laden Sie Skip the Envelope-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds throughout your day!

Click the extension icon button when on the gift card page to extract the information into number,pin,value format and put it straight onto your clipboard, saving even more entire seconds!

You may still be required to solve a captcha - sorry.

If you'd like to see the source and install it directly for safety, view the Github repo here: https://github.com/mbianucci/skip-the-envelope                    

Grundlegende Informationen zur Erweiterung

Name Skip the Envelope Skip the Envelope
ID capmabnhnfnjgbpjcjadmhcaggpjfkba
Offizielle URL https://chromewebstore.google.com/detail/skip-the-envelope/capmabnhnfnjgbpjcjadmhcaggpjfkba
Beschreibung Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…
Dateigröße 22.33 KB
Installationsanzahl 56
Aktuelle Version 2.2
Letztes Update 2022-02-03
Veröffentlichungsdatum 2020-07-02
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler emag_eh7
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skip the Envelope",
    "version": "2.2",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/delivery.cardago.com\/*",
                "*:\/\/www.paypal.com\/gifts\/claim\/*",
                "*:\/\/www.vcdelivery.com\/certificate\/*"
            ],
            "js": [
                "skip.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Click to extract GC info.",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/skip_envelope16.png",
            "32": "images\/skip_envelope32.png",
            "48": "images\/skip_envelope48.png",
            "96": "images\/skip_envelope96.png",
            "128": "images\/skip_envelope128.png"
        }
    },
    "icons": {
        "16": "images\/skip_envelope16.png",
        "32": "images\/skip_envelope32.png",
        "48": "images\/skip_envelope48.png",
        "96": "images\/skip_envelope96.png",
        "128": "images\/skip_envelope128.png"
    }
}