Friend Safari Notifier
Get notified when a friend safari of interest is posted to r/friendsafari
¿Qué es Friend Safari Notifier?
Friend Safari Notifier es una extensión de Chrome desarrollada por guenther.andrew.j, y su función principal es "Get notified when a friend safari of interest is posted to r/friendsafari".
Descargar Archivo CRX de la Extensión Friend Safari Notifier
Descarga archivos de extensión Friend Safari Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Friend Safari Notifier allows you to subscribe to posts in the r/FriendSafari subreddit for different Pokemon and Pokemon types. When someone makes a post with a Pokemon you're interested in, the icon will highlight and take you straight there!
Información Básica de la Extensión
Nombre | |
ID | gginibpmncjmbefajigocmbjanfoipnj |
URL Oficial | https://chrome.google.com/webstore/detail/friend-safari-notifier/gginibpmncjmbefajigocmbjanfoipnj |
Descripción | Get notified when a friend safari of interest is posted to r/friendsafari |
Tamaño del Archivo | 51.22 KB |
Cantidad de Instalaciones | 31 |
Versión Actual | 1.1.1 |
Última Actualización | 2014-03-13 |
Fecha de Publicación | 2014-03-13 |
Desarrollador | guenther.andrew.j |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Friend Safari Notifier", "author": "Andrew Guenther", "description": "Get notified when a friend safari of interest is posted to r\/friendsafari", "version": "1.1.1", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon128.png" }, "permissions": [ "http:\/\/www.reddit.com\/r\/friendsafari\/", "alarms", "tabs", "storage" ], "options_page": "options.html", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "jquery.js", "fs-notifier.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/r\/friendsafari\/new" ], "js": [ "jquery.js", "fs-filter.js" ] } ] } |