Find On Foursquare
A small, quick context menu option to search for the selected text on Foursquare.
Wat is Find On Foursquare?
Find On Foursquare is een Chrome-extensie ontwikkeld door Wesley Bliss, en de belangrijkste functie is "A small, quick context menu option to search for the selected text on Foursquare.".
Extensie Screenshots
Download het CRX-bestand van de extensie Find On Foursquare
Download Find On Foursquare-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | jimjjklnknlmeegfpbpihhmpgkjgcdhp |
Officiële URL | https://chrome.google.com/webstore/detail/find-on-foursquare/jimjjklnknlmeegfpbpihhmpgkjgcdhp |
Beschrijving | A small, quick context menu option to search for the selected text on Foursquare. |
Bestandsgrootte | 44.75 KB |
Aantal Installaties | 82 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2015-01-15 |
Publicatiedatum | 2015-01-15 |
Beoordeling | 2.40/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Wesley Bliss |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |