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