Marker Upper

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

Co to jest Marker Upper?

Marker Upper to rozszerzenie Chrome opracowane przez miss_vee22, a jego główną funkcją jest „This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Marker Upper

Pobierz pliki rozszerzeń Marker Upper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Marker Upper Marker Upper
ID cfgiacffgadlkgbephhggeeapdfflfml
Oficjalny URL https://chrome.google.com/webstore/detail/marker-upper/cfgiacffgadlkgbephhggeeapdfflfml
Opis This extension with allow you to mark up any website in your browser. Making reading, learning and focussing on content easier
Rozmiar pliku 17.79 KB
Liczba instalacji 195
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-08-05
Data Publikacji 2017-08-05
Ocena 2.50/5 Łącznie 2 Oceny
Deweloper miss_vee22
Typ Płatności free
Obsługiwane Języki 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"
    ]
}