Quick Quotes

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

Quick Quotes क्या है?

Quick Quotes Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select and save quotes from the internet as well as a link to them."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Quick Quotes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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",
        ""
    ]
}