Find On Foursquare

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

Find On Foursquare là gì?

Find On Foursquare là một tiện ích mở rộng Chrome được phát triển bởi Wesley Bliss, và tính năng chính của nó là "A small, quick context menu option to search for the selected text on Foursquare.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Find On Foursquare

Tải xuống các tệp mở rộng Find On Foursquare dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Find On Foursquare Find On Foursquare
ID jimjjklnknlmeegfpbpihhmpgkjgcdhp
URL Chính Thức https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp
Mô tả A small, quick context menu option to search for the selected text on Foursquare.
Kích Thước Tệp 44.75 KB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-01-15
Ngày Phát Hành 2015-01-15
Đánh Giá 2.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Wesley Bliss
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}