TheOatmeal Comic Downloader

Allows you to download comics from The Oatmeal (http://theoatmeal.com) as a single image

Vad är TheOatmeal Comic Downloader?

TheOatmeal Comic Downloader är en Chrome-tillägg utvecklad av Stefan Mirea, och dess huvudfunktion är "Allows you to download comics from The Oatmeal (http://theoatmeal.com) as a single image".

Tilläggsskärmbilder

screenshot

Ladda ner TheOatmeal Comic Downloader-förlängningens CRX-fil

Ladda ner TheOatmeal Comic Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Allows you to instantly download comics from http://theoatmeal.com.
Just go to any of the comics on http://theoatmeal.com/comics and click the icon in the address bar (it will appear once you are on the site), give it < 1 second and you are done!

Note: I have no association with The Oatmeal. This is something that I found useful for myself when I wanted to have the comics as desktop wallpapers and what-not. 

All downloaded comics with this app will have The Oatmeal copyright on them :)                    

Grundläggande Information om Tillägg

Namn TheOatmeal Comic Downloader TheOatmeal Comic Downloader
ID dcedeidpcjhinfifepebpednflgnpmeh
Officiell webbadress https://chrome.google.com/webstore/detail/theoatmeal-comic-download/dcedeidpcjhinfifepebpednflgnpmeh
Beskrivning Allows you to download comics from The Oatmeal (http://theoatmeal.com) as a single image
Filstorlek 28.78 KB
Antal Installationer 30
Aktuell Version 0.5
Senast Uppdaterad 2013-02-14
Publiceringsdatum 2013-02-14
Betyg 2.83/5 Totalt 6 Betyg
Utvecklare Stefan Mirea
Betalningssätt free
Stödda Språk en
manifest.json
{
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/canvas-to-blob.js",
                "js\/getComic.js"
            ],
            "matches": [
                "http:\/\/theoatmeal.com\/comics\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Allows you to download comics from The Oatmeal (http:\/\/theoatmeal.com) as a single image",
    "icons": {
        "128": "images\/logo_128.png",
        "16": "images\/logo_16.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png"
    },
    "manifest_version": 2,
    "name": "TheOatmeal Comic Downloader",
    "options_page": "options.html",
    "page_action": {
        "default_icon": "images\/logo_32.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/theoatmeal.com\/*",
        "http:\/\/*.amazonaws.com\/*"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.5"
}