Friend Safari Notifier

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

Was ist Friend Safari Notifier?

Friend Safari Notifier ist eine Chrome-Erweiterung, die von guenther.andrew.j entwickelt wurde, und ihr Hauptmerkmal ist "Get notified when a friend safari of interest is posted to r/friendsafari".

Friend Safari Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Friend Safari Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Friend Safari Notifier Friend Safari Notifier
ID gginibpmncjmbefajigocmbjanfoipnj
Offizielle URL https://chrome.google.com/webstore/detail/friend-safari-notifier/gginibpmncjmbefajigocmbjanfoipnj
Beschreibung Get notified when a friend safari of interest is posted to r/friendsafari
Dateigröße 51.22 KB
Installationsanzahl 31
Aktuelle Version 1.1.1
Letztes Update 2014-03-13
Veröffentlichungsdatum 2014-03-13
Entwickler guenther.andrew.j
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}