Find On Foursquare

A small, quick context menu option to search for the selected text on Foursquare.

Find On Foursquareとは何ですか?

Find On FoursquareはWesley Blissによって開発されたChromeの拡張機能で、その主な機能は「A small, quick context menu option to search for the selected text on Foursquare.」です。

拡張機能のスクリーンショット

screenshot

Find On Foursquare拡張機能のCRXファイルをダウンロード

Find On Foursquare拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A small, quick context menu option to search for the selected text on Foursquare. Select some text, right click, and choose "Find On Foursquare" to open a new tab with venue search results.

The extension is only about 40 lines of code, and the source code is available on GitHub:

https://github.com/wesleybliss/Find-On-Foursquare---Chrome-Extension                    

拡張機能の基本情報

名前 Find On Foursquare Find On Foursquare
ID jimjjklnknlmeegfpbpihhmpgkjgcdhp
公式URL https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp
説明 A small, quick context menu option to search for the selected text on Foursquare.
ファイルサイズ 44.75 KB
インストール数 82
現在のバージョン 1.0
最終更新日 2015-01-15
公開日 2015-01-15
評価 2.40/5 合計 5 レビュー
開発者 Wesley Bliss
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Find On Foursquare",
    "description": "A small, quick context menu option to search for the selected text on Foursquare.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "main.js"
        ]
    },
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ]
}