Find On Foursquare

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

Was ist Find On Foursquare?

Find On Foursquare ist eine Chrome-Erweiterung, die von Wesley Bliss entwickelt wurde, und ihr Hauptmerkmal ist "A small, quick context menu option to search for the selected text on Foursquare.".

Erweiterungsscreenshots

screenshot

Find On Foursquare-Erweiterungs-CRX-Datei herunterladen

Laden Sie Find On Foursquare-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Find On Foursquare Find On Foursquare
ID jimjjklnknlmeegfpbpihhmpgkjgcdhp
Offizielle URL https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp
Beschreibung A small, quick context menu option to search for the selected text on Foursquare.
Dateigröße 44.75 KB
Installationsanzahl 82
Aktuelle Version 1.0
Letztes Update 2015-01-15
Veröffentlichungsdatum 2015-01-15
Bewertung 2.40/5 Insgesamt 5 Bewertungen
Entwickler Wesley Bliss
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}