Marker Upper

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

O que é Marker Upper?

Marker Upper é uma extensão do Chrome desenvolvida por miss_vee22, e sua principal característica é "This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Marker Upper

Baixe arquivos de extensão Marker Upper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Marker Upper Marker Upper
ID cfgiacffgadlkgbephhggeeapdfflfml
URL Oficial https://chrome.google.com/webstore/detail/marker-upper/cfgiacffgadlkgbephhggeeapdfflfml
Descrição This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier
Tamanho do Arquivo 17.79 KB
Contagem de Instalações 195
Versão Atual 1.0
Última Atualização 2017-08-05
Data de Publicação 2017-08-05
Classificação 2.50/5 Total de 2 Avaliações
Desenvolvedor miss_vee22
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}