Skip the Envelope

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

Skip the Envelope là gì?

Skip the Envelope là một tiện ích mở rộng Chrome được phát triển bởi emag_eh7, và tính năng chính của nó là "Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Skip the Envelope

Tải xuống các tệp mở rộng Skip the Envelope dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Skip the Envelope Skip the Envelope
ID capmabnhnfnjgbpjcjadmhcaggpjfkba
URL Chính Thức https://chromewebstore.google.com/detail/skip-the-envelope/capmabnhnfnjgbpjcjadmhcaggpjfkba
Mô tả Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…
Kích Thước Tệp 22.33 KB
Số Lần Cài Đặt 56
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2022-02-03
Ngày Phát Hành 2020-07-02
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển emag_eh7
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}