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 هو إضافة Chrome تم تطويرها بواسطة emag_eh7، والميزة الرئيسية لها هي "Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Skip the Envelope
قم بتنزيل ملفات الامتداد Skip the Envelope بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } } |