Skip the Envelope
Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…
Skip the Envelope क्या है?
Skip the Envelope emag_eh7 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Skip the Envelope एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Skip the Envelope |
ID | capmabnhnfnjgbpjcjadmhcaggpjfkba |
आधिकारिक URL | https://chromewebstore.google.com/detail/skip-the-envelope/capmabnhnfnjgbpjcjadmhcaggpjfkba |
विवरण | Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds… |
फ़ाइल का आकार | 22.33 KB |
स्थापना संख्या | 56 |
वर्तमान संस्करण | 2.2 |
अंतिम अपडेट | 2022-02-03 |
प्रकाशन तिथि | 2020-07-02 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | emag_eh7 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |