Find On Foursquare

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

Apa itu Find On Foursquare?

Find On Foursquare adalah ekstensi Chrome yang dikembangkan oleh Wesley Bliss, dan fitur utamanya adalah "A small, quick context menu option to search for the selected text on Foursquare.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Find On Foursquare

Unduh file ekstensi Find On Foursquare dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Find On Foursquare Find On Foursquare
ID jimjjklnknlmeegfpbpihhmpgkjgcdhp
URL Resmi https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp
Deskripsi A small, quick context menu option to search for the selected text on Foursquare.
Ukuran File 44.75 KB
Jumlah Instalasi 82
Versi Saat Ini 1.0
Terakhir Diperbarui 2015-01-15
Tanggal Publikasi 2015-01-15
Penilaian 2.40/5 Total 5 Penilaian
Pengembang Wesley Bliss
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}