Friend Safari Notifier
Get notified when a friend safari of interest is posted to r/friendsafari
Что такое Friend Safari Notifier?
Friend Safari Notifier - это расширение Chrome, разработанное guenther.andrew.j, и его основная функция - "Get notified when a friend safari of interest is posted to r/friendsafari".
Скачать файл CRX расширения Friend Safari Notifier
Скачайте файлы расширений Friend Safari Notifier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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!
Основная информация о расширении
Название | |
ID | gginibpmncjmbefajigocmbjanfoipnj |
Официальный URL | https://chrome.google.com/webstore/detail/friend-safari-notifier/gginibpmncjmbefajigocmbjanfoipnj |
Описание | Get notified when a friend safari of interest is posted to r/friendsafari |
Размер файла | 51.22 KB |
Количество установок | 31 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2014-03-13 |
Дата публикации | 2014-03-13 |
Разработчик | guenther.andrew.j |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } ] } |