Skip the Envelope
Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…
Cos'è Skip the Envelope?
Skip the Envelope è un'estensione di Chrome sviluppata da emag_eh7, e la sua funzione principale è "Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Skip the Envelope
Scarica i file di estensione Skip the Envelope in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Skip the Envelope |
ID | capmabnhnfnjgbpjcjadmhcaggpjfkba |
URL Ufficiale | https://chromewebstore.google.com/detail/skip-the-envelope/capmabnhnfnjgbpjcjadmhcaggpjfkba |
Descrizione | Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds… |
Dimensione del File | 22.33 KB |
Conteggio Installazioni | 56 |
Versione Corrente | 2.2 |
Ultimo Aggiornamento | 2022-02-03 |
Data di Pubblicazione | 2020-07-02 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | emag_eh7 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |