Friend Safari Notifier

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

Friend Safari Notifier là gì?

Friend Safari Notifier là một tiện ích mở rộng Chrome được phát triển bởi guenther.andrew.j, và tính năng chính của nó là "Get notified when a friend safari of interest is posted to r/friendsafari".

Tải xuống tệp CRX của tiện ích mở rộng Friend Safari Notifier

Tải xuống các tệp mở rộng Friend Safari Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Friend Safari Notifier Friend Safari Notifier
ID gginibpmncjmbefajigocmbjanfoipnj
URL Chính Thức https://chrome.google.com/webstore/detail/friend-safari-notifier/gginibpmncjmbefajigocmbjanfoipnj
Mô tả Get notified when a friend safari of interest is posted to r/friendsafari
Kích Thước Tệp 51.22 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2014-03-13
Ngày Phát Hành 2014-03-13
Nhà Phát Triển guenther.andrew.j
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}