Friend Safari Notifier

Get notified when a friend safari of interest is posted to r/friendsafari

O que é Friend Safari Notifier?

Friend Safari Notifier é uma extensão do Chrome desenvolvida por guenther.andrew.j, e sua principal característica é "Get notified when a friend safari of interest is posted to r/friendsafari".

Baixar o arquivo CRX da Extensão Friend Safari Notifier

Baixe arquivos de extensão Friend Safari Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Friend Safari Notifier Friend Safari Notifier
ID gginibpmncjmbefajigocmbjanfoipnj
URL Oficial https://chrome.google.com/webstore/detail/friend-safari-notifier/gginibpmncjmbefajigocmbjanfoipnj
Descrição Get notified when a friend safari of interest is posted to r/friendsafari
Tamanho do Arquivo 51.22 KB
Contagem de Instalações 31
Versão Atual 1.1.1
Última Atualização 2014-03-13
Data de Publicação 2014-03-13
Desenvolvedor guenther.andrew.j
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}