Comic Downloader

This plugin was created to download comics and convert them to pdf

Qu'est-ce que Comic Downloader ?

Comic Downloader est une extension Chrome développée par Quizmo, et sa fonction principale est "This plugin was created to download comics and convert them to pdf".

Télécharger le fichier CRX de l'extension Comic Downloader

Téléchargez les fichiers d'extension Comic Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This plugin will convert the images from the website http://readcomiconline.to/ and convert them into a pdf for offline reading..

This was created for personal use, and only uploaded to the Chrome Webshop to stop Chrome from removing it when restarting Chrome.

Icon created by Sagar Unagar under the licens Attribution 3.0                    

Informations de Base sur l'Extension

Nom Comic Downloader Comic Downloader
ID goofdkpiolidkahcmobnhkpeojceehoh
URL Officiel https://chrome.google.com/webstore/detail/comic-downloader/goofdkpiolidkahcmobnhkpeojceehoh
Description This plugin was created to download comics and convert them to pdf
Taille du Fichier 119 KB
Nombre d'Installations 272
Version Actuelle 1.0
Dernière Mise à Jour 2017-05-19
Date de Publication 2017-05-19
Évaluation 1.91/5 Total 11 Évaluations
Développeur Quizmo
Type de Paiement free
Site Web de l'Extension https://github.com/Quizmo/ComicDownload/
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Comic Downloader",
    "description": "This plugin was created to download comics and convert them to pdf",
    "version": "1.0",
    "author": "Quizmo",
    "icons": {
        "16": "css\/icon\/icon16.png",
        "48": "css\/icon\/icon48.png",
        "128": "css\/icon\/icon128.png"
    },
    "browser_action": {
        "default_icon": "css\/icon\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/readcomiconline.to\/*",
                "http:\/\/*.blogspot.com\/*"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/FileSaver.min.js",
                "js\/lib\/jspdf.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/lib\/content.js"
    ],
    "permissions": [
        "activeTab",
        "downloads",
        "https:\/\/ajax.googleapis.com\/",
        "tabs",
        "http:\/\/readcomiconline.to\/*",
        "http:\/\/*.blogspot.com\/*"
    ]
}