Quick Quotes

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

什麼是Quick Quotes?

Quick Quotes是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Select and save quotes from the internet as well as a link to them.”。

擴展截圖

screenshot
screenshot

下載Quick Quotes擴展crx文件

下載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
官方網址 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",
        ""
    ]
}