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