Friend Safari Notifier
Get notified when a friend safari of interest is posted to r/friendsafari
Friend Safari Notifier란 무엇입니까?
Friend Safari Notifier은(는) guenther.andrew.j에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get notified when a friend safari of interest is posted to r/friendsafari"입니다.
Friend Safari Notifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |