Find On Foursquare

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

Vad är Find On Foursquare?

Find On Foursquare är en Chrome-tillägg utvecklad av Wesley Bliss, och dess huvudfunktion är "A small, quick context menu option to search for the selected text on Foursquare.".

Tilläggsskärmbilder

screenshot

Ladda ner Find On Foursquare-förlängningens CRX-fil

Ladda ner Find On Foursquare-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Find On Foursquare Find On Foursquare
ID jimjjklnknlmeegfpbpihhmpgkjgcdhp
Officiell webbadress https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp
Beskrivning A small, quick context menu option to search for the selected text on Foursquare.
Filstorlek 44.75 KB
Antal Installationer 82
Aktuell Version 1.0
Senast Uppdaterad 2015-01-15
Publiceringsdatum 2015-01-15
Betyg 2.40/5 Totalt 5 Betyg
Utvecklare Wesley Bliss
Betalningssätt free
Stödda Språk 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"
    ]
}