Find On Foursquare

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

什麼是Find On Foursquare?

Find On Foursquare是由Wesley Bliss開發的Chrome擴展程式,該擴展的主要功能是“A small, quick context menu option to search for the selected text on Foursquare.”。

擴展截圖

screenshot

下載Find On Foursquare擴展crx文件

下載Find On Foursquare擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Find On Foursquare Find On Foursquare
ID jimjjklnknlmeegfpbpihhmpgkjgcdhp
官方網址 https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp
簡介 A small, quick context menu option to search for the selected text on Foursquare.
檔案大小 44.75 KB
安裝次數 82
目前版本 1.0
更新時間 2015-01-15
上架時間 2015-01-15
評分 2.40/5 共 5 次評分
開發者 Wesley Bliss
付費類型 free
支援的語言 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"
    ]
}