Marker Upper

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

¿Qué es Marker Upper?

Marker Upper es una extensión de Chrome desarrollada por miss_vee22, y su función principal es "This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Marker Upper

Descarga archivos de extensión Marker Upper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Marker Upper Marker Upper
ID cfgiacffgadlkgbephhggeeapdfflfml
URL Oficial https://chrome.google.com/webstore/detail/marker-upper/cfgiacffgadlkgbephhggeeapdfflfml
Descripción This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier
Tamaño del Archivo 17.79 KB
Cantidad de Instalaciones 195
Versión Actual 1.0
Última Actualización 2017-08-05
Fecha de Publicación 2017-08-05
Calificación 2.50/5 Total de 2 Calificaciones
Desarrollador miss_vee22
Tipo de Pago free
Idiomas Soportados 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"
    ]
}