Quick Quotes

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

Qu'est-ce que Quick Quotes ?

Quick Quotes est une extension Chrome développée par Unknown, et sa fonction principale est "Select and save quotes from the internet as well as a link to them.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Quick Quotes

Téléchargez les fichiers d'extension Quick Quotes au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Quick Quotes Quick Quotes
ID ffbpeppefgiiadaogddjejkgfhlpnbni
URL Officiel https://chromewebstore.google.com/detail/quick-quotes/ffbpeppefgiiadaogddjejkgfhlpnbni
Description Select and save quotes from the internet as well as a link to them.
Taille du Fichier 7.31 KB
Nombre d'Installations 137
Version Actuelle 1.0
Dernière Mise à Jour 2015-12-12
Date de Publication 2015-12-11
Évaluation 5.00/5 Total 2 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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",
        ""
    ]
}