Quick Quotes

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

Τι είναι το Quick Quotes;

Το Quick Quotes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Select and save quotes from the internet as well as a link to them.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Quick Quotes

Λήψη αρχείων επέκτασης Quick Quotes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Quick Quotes Quick Quotes
ID ffbpeppefgiiadaogddjejkgfhlpnbni
Επίσημο URL https://chromewebstore.google.com/detail/quick-quotes/ffbpeppefgiiadaogddjejkgfhlpnbni
Περιγραφή Select and save quotes from the internet as well as a link to them.
Μέγεθος Αρχείου 7.31 KB
Αριθμός Εγκαταστάσεων 137
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2015-12-12
Ημερομηνία Δημοσίευσης 2015-12-11
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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",
        ""
    ]
}