Quick Quotes

Select and save quotes from the internet as well as a link to them.

Was ist Quick Quotes?

Quick Quotes ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Select and save quotes from the internet as well as a link to them.".

Erweiterungsscreenshots

screenshot
screenshot

Quick Quotes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Quick Quotes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Save and link to quotes on the internet you want to keep.

Just select text on any webpage and right-click it and choose "Save as Quick Quote". Click on the Quick Quotes extension button next to the Chrome browser bar to see all your saved quotes and go to their original locations on the internet.                    

Grundlegende Informationen zur Erweiterung

Name Quick Quotes Quick Quotes
ID ffbpeppefgiiadaogddjejkgfhlpnbni
Offizielle URL https://chromewebstore.google.com/detail/quick-quotes/ffbpeppefgiiadaogddjejkgfhlpnbni
Beschreibung Select and save quotes from the internet as well as a link to them.
Dateigröße 7.31 KB
Installationsanzahl 137
Aktuelle Version 1.0
Letztes Update 2015-12-12
Veröffentlichungsdatum 2015-12-11
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Quotes",
    "description": "Select and save quotes from the internet as well as a link to them.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "findQuote.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "tabs",
        ""
    ]
}