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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip the opening animation when receiving a gift card from MyGiftCardsPlus or PayPal Digital Gifts, saving entire seconds…"입니다.
확장 프로그램 스크린샷
Skip the Envelope 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |