Find On Foursquare

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

What is Find On Foursquare?

Find On Foursquare is a Chrome extension developed by Wesley Bliss, and its main feature is "A small, quick context menu option to search for the selected text on Foursquare.".

Extension Screenshots

screenshot

Download Find On Foursquare Extension CRX File

Download Find On Foursquare extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Find On Foursquare Find On Foursquare
ID jimjjklnknlmeegfpbpihhmpgkjgcdhp
Official URL https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp
Description A small, quick context menu option to search for the selected text on Foursquare.
File Size 44.75 KB
Installation Count 82
Current Version 1.0
Last Updated 2015-01-15
Publish Date 2015-01-15
Rating 2.40/5 Total 5 Ratings
Developer Wesley Bliss
Payment Type free
Supported Languages 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"
    ]
}