PageChopper

Modify current page for printing.

Was ist PageChopper?

PageChopper ist eine Chrome-Erweiterung, die von https://brispace.us entwickelt wurde, und ihr Hauptmerkmal ist "Modify current page for printing.".

Erweiterungsscreenshots

screenshot

PageChopper-Erweiterungs-CRX-Datei herunterladen

Laden Sie PageChopper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        PageChopper is my attempt to recreate an old extension called Aardvark that allowed the user to remove elements from the current web page in order to make it better for printing.  You move your mouse pointer over an item and press a key (for example 'r' to remove the item).  A list of the command keys is displayed whenever you activate the extension.  You may remove items, isolate an item (i.e. remove all other items), convert the page to black and white, remove all images, or remove extra whitespace. You may undo any of your changes.                    

Grundlegende Informationen zur Erweiterung

Name PageChopper PageChopper
ID bcdjdbiiohahlfdochlfbbplnfgakhmk
Offizielle URL https://chromewebstore.google.com/detail/pagechopper/bcdjdbiiohahlfdochlfbbplnfgakhmk
Beschreibung Modify current page for printing.
Dateigröße 11.18 KB
Installationsanzahl 70
Aktuelle Version 1.0
Letztes Update 2018-02-27
Veröffentlichungsdatum 2018-02-27
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler https://brispace.us
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://brispace.us/blog/title/Modify_Web_Pages_For_Printing_With_PageChopper
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PageChopper",
    "description": "Modify current page for printing.",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_title": "Modify page for printing"
    },
    "permissions": [
        "activeTab"
    ]
}