My Percipio Downloader

Downloads Percipio (Skillsoft) ebooks, audio books and videos.

My Percipio Downloader란 무엇입니까?

My Percipio Downloader은(는) Gareth Stephenson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Downloads Percipio (Skillsoft) ebooks, audio books and videos."입니다.

확장 프로그램 스크린샷

screenshot

My Percipio Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        IMPORTANT: You MUST have an active, paid subscription to Percipio (Skillsoft) in order for this extension to work. Canceled and unpaid accounts will prevent you from being able to download ebooks and videos.

A simple extension that allows you to download Percipio (Skillsoft) ebooks, audio books and videos.

You can download ebooks and videos by visiting the book, audio book or video's page. Click on the My Percipio Downloader Logo in the top navigation bar to begin downloading an ePub version of the eBook, an audio book, or all the videos in a course. It's as simple as that!

Legal Disclaimer:
This extension is for personal use ONLY. If piracy occurs because of your use of this extension, then YOU will be held legally accountable for the unlicensed distribution of the content, not the author of this extension.                    

확장 프로그램 기본 정보

이름 My Percipio Downloader My Percipio Downloader
ID gcibkmehbigfkeoigcobhhinlgoiomdn
공식 URL https://chromewebstore.google.com/detail/my-percipio-downloader/gcibkmehbigfkeoigcobhhinlgoiomdn
설명 Downloads Percipio (Skillsoft) ebooks, audio books and videos.
파일 크기 28.64 KB
설치 횟수 1,277
현재 버전 1.7.9
최근 업데이트 2024-02-23
출시 날짜 2022-09-22
평점 5.00/5 총 6 개의 평점
개발자 Gareth Stephenson
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/ea3fab6a-c55a-4aa2-ac1e-dc4eb6ab6831
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "My Percipio Downloader",
    "description": "Downloads Percipio (Skillsoft) ebooks, audio books and videos.",
    "version": "1.7.9",
    "author": "Gareth Stephenson",
    "icons": {
        "16": "img\/16px.png",
        "48": "img\/48px.png",
        "128": "img\/128px.png"
    },
    "action": {
        "default_icon": {
            "16": "img\/16px.png",
            "48": "img\/48px.png",
            "128": "img\/128px.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "common.js",
                "*.png",
                "*.svg"
            ],
            "matches": [
                "https:\/\/*.percipio.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.percipio.com\/*"
            ],
            "js": [
                "fflate.js",
                "epub.js",
                "common.js",
                "contentscript.js"
            ],
            "css": [
                "mypercipiodownloader.css",
                "toast.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "webRequest",
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/*.percipio.com\/*"
    ]
}