Friend Safari Notifier
Get notified when a friend safari of interest is posted to r/friendsafari
Cos'è Friend Safari Notifier?
Friend Safari Notifier è un'estensione di Chrome sviluppata da guenther.andrew.j, e la sua funzione principale è "Get notified when a friend safari of interest is posted to r/friendsafari".
Scarica il file CRX dell'estensione Friend Safari Notifier
Scarica i file di estensione Friend Safari Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | gginibpmncjmbefajigocmbjanfoipnj |
URL Ufficiale | https://chrome.google.com/webstore/detail/friend-safari-notifier/gginibpmncjmbefajigocmbjanfoipnj |
Descrizione | Get notified when a friend safari of interest is posted to r/friendsafari |
Dimensione del File | 51.22 KB |
Conteggio Installazioni | 31 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2014-03-13 |
Data di Pubblicazione | 2014-03-13 |
Sviluppatore | guenther.andrew.j |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |