New Relic Notifier
Notifies when new items occur in New Relic RSS feed.
ما هو New Relic Notifier؟
New Relic Notifier هو إضافة Chrome تم تطويرها بواسطة Daniel Lucks، والميزة الرئيسية لها هي "Notifies when new items occur in New Relic RSS feed.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة New Relic Notifier
قم بتنزيل ملفات الامتداد New Relic Notifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension will notify you via desktop notification when new items occur in New Relic RSS feed for application and system monitoring. After installing this extension go to the New Relic monitoring website (https://rpm.newrelic.com) and log in. In the application overview you will see a new link "[Add to Notifier]" next to the RSS icon (upper right area). Click it to add this RSS feed to the "New Relic Notifier". Every time you enable this extension by clicking the icon in the browser bar (enabled-state is indicated by a green "on" label), all feed items of the last 12 hours will appear as notifications. After that, only new items in this feed will show up.
معلومات أساسية عن التمديد
الاسم | |
ID | obfjgjggbmpecgfjloecpgemjehnldgk |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk |
الوصف | Notifies when new items occur in New Relic RSS feed. |
حجم الملف | 28.15 KB |
عدد التثبيتات | 80 |
النسخة الحالية | 0.0.0.1 |
آخر تحديث | 2014-04-01 |
تاريخ النشر | 2014-04-01 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | Daniel Lucks |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Relic Notifier", "short_name": "NRN", "description": "Notifies when new items occur in New Relic RSS feed.", "version": "0.0.0.1", "permissions": [ "notifications", "tabs", "http:\/\/rpm.newrelic.com\/*", "https:\/\/rpm.newrelic.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/rpm.newrelic.com\/*", "https:\/\/rpm.newrelic.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "css": [ "nrn.css" ] } ], "browser_action": { "default_icon": "icon-browserbar.png", "default_title": "Click to on\/off this extension" } } |