Quotemark

Save quotes from all over the web!

Wat is Quotemark?

Quotemark is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Save quotes from all over the web!".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Quotemark

Download Quotemark-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Quotemark Quotemark
ID klgfbfafpkfkchoeemoeicggojkdgecl
Officiële URL https://chromewebstore.google.com/detail/quotemark/klgfbfafpkfkchoeemoeicggojkdgecl
Beschrijving Save quotes from all over the web!
Bestandsgrootte 20.62 KB
Aantal Installaties 18
Huidige Versie 1.0
Laatst Bijgewerkt 2019-11-21
Publicatiedatum 2019-11-16
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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
}