Skip the Envelope
Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…
Qu'est-ce que Skip the Envelope ?
Skip the Envelope est une extension Chrome développée par emag_eh7, et sa fonction principale est "Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Skip the Envelope
Téléchargez les fichiers d'extension Skip the Envelope au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Skip the Envelope |
ID | capmabnhnfnjgbpjcjadmhcaggpjfkba |
URL Officiel | https://chromewebstore.google.com/detail/skip-the-envelope/capmabnhnfnjgbpjcjadmhcaggpjfkba |
Description | Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds… |
Taille du Fichier | 22.33 KB |
Nombre d'Installations | 56 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2022-02-03 |
Date de Publication | 2020-07-02 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | emag_eh7 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |