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文件

下载My Percipio Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
    ]
}