Marker Upper

This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier

Was ist Marker Upper?

Marker Upper ist eine Chrome-Erweiterung, die von miss_vee22 entwickelt wurde, und ihr Hauptmerkmal ist "This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier".

Erweiterungsscreenshots

screenshot

Marker Upper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Marker Upper-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

                        With a right click and control key, users will have the ability to markup any text on your site, increasing readability and note-taking ability.. Make sure to right click while pressing the control key for the marker options to show.                    

Grundlegende Informationen zur Erweiterung

Name Marker Upper Marker Upper
ID cfgiacffgadlkgbephhggeeapdfflfml
Offizielle URL https://chrome.google.com/webstore/detail/marker-upper/cfgiacffgadlkgbephhggeeapdfflfml
Beschreibung This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier
Dateigröße 17.79 KB
Installationsanzahl 195
Aktuelle Version 1.0
Letztes Update 2017-08-05
Veröffentlichungsdatum 2017-08-05
Bewertung 2.50/5 Insgesamt 2 Bewertungen
Entwickler miss_vee22
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Marker Upper",
    "description": "This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier",
    "version": "1.0",
    "background": {
        "scripts": [
            "markerupper.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Marker Upper"
    },
    "permissions": [
        "activeTab",
        "https:\/\/*\/",
        "*:\/\/*\/*",
        "http:\/\/*\/",
        "https:\/\/ajax.googleapis.com\/",
        "",
        "tts",
        "background",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "markerupper.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "style.css"
    ]
}