Find On Foursquare

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

Hvad er Find On Foursquare?

Find On Foursquare er en Chrome-udvidelse udviklet af Wesley Bliss, og dens hovedfunktion er "A small, quick context menu option to search for the selected text on Foursquare.".

Udvidelsesskærmbilleder

screenshot

Download Find On Foursquare-udvidelses-CRX-fil

Download Find On Foursquare-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Find On Foursquare Find On Foursquare
ID jimjjklnknlmeegfpbpihhmpgkjgcdhp
Officiel URL https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp
Beskrivelse A small, quick context menu option to search for the selected text on Foursquare.
Filstørrelse 44.75 KB
Antal Installationer 82
Nuværende Version 1.0
Senest Opdateret 2015-01-15
Udgivelsesdato 2015-01-15
Bedømmelse 2.40/5 Samlet 5 Bedømmelser
Udvikler Wesley Bliss
Betalingsmetode free
Understøttede Sprog 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"
    ]
}