Quotemark

Save quotes from all over the web!

Co to jest Quotemark?

Quotemark to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Save quotes from all over the web!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Quotemark

Pobierz pliki rozszerzeń Quotemark 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

                        Quotemark lets you save quotes from the internet and bookmark them. A list of quotes is saved in the extension's popup. Clicking on the quote, brings you back to the original web-page, where the quote is highlighted and in focus.                    

Podstawowe informacje o rozszerzeniu

Nazwa Quotemark Quotemark
ID klgfbfafpkfkchoeemoeicggojkdgecl
Oficjalny URL https://chromewebstore.google.com/detail/quotemark/klgfbfafpkfkchoeemoeicggojkdgecl
Opis Save quotes from all over the web!
Rozmiar pliku 20.62 KB
Liczba instalacji 18
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-11-21
Data Publikacji 2019-11-16
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quotemark",
    "version": "1.0",
    "description": "Save quotes from all over the web!",
    "permissions": [
        "tabs",
        "contextMenus",
        "",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js",
            "contextmenu.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": ".\/icons\/iconcontrast.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/icons\/iconcontrast.png",
        "48": ".\/icons\/iconcontrast.png",
        "128": ".\/icons\/iconcontrast.png"
    },
    "manifest_version": 2
}