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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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