Llamalerts
Checks the Deviantart Badges page and lets you know when you have trade offers.
ما هو Llamalerts؟
Llamalerts هو إضافة Chrome تم تطويرها بواسطة Christopher Naron، والميزة الرئيسية لها هي "Checks the Deviantart Badges page and lets you know when you have trade offers.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Llamalerts
قم بتنزيل ملفات الامتداد Llamalerts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
-- No Longer Being Maintained. The source is on github, feel free to edit and update it as you like -- Llamalerts auto-refreshes your Deviantart Badges page and plays an audio cue if there's any open trade offers. How to use: 1. Go to the Deviantart Badges page. 2. Type how often you want to refresh in the box 3. Click the toggle switch on the extension 4. Open another tab and do something else. To stop the extension go back to the Badges page and then click the toggle switch again.
معلومات أساسية عن التمديد
الاسم | |
ID | llhfdehocdehnipbhhgonidbaonijogp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/llhfdehocdehnipbhhgonidbaonijogp |
الوصف | Checks the Deviantart Badges page and lets you know when you have trade offers. |
حجم الملف | 9.61 KB |
عدد التثبيتات | 17 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2017-04-25 |
تاريخ النشر | 2017-04-25 |
تقييم | 3.50/5 مجموع تقييمات 2 |
المطور | Christopher Naron |
البريد الإلكتروني | Christopher.naron@gmail |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Christopher Naron ", "name": "Llamalerts", "description": "Checks the Deviantart Badges page and lets you know when you have trade offers.", "version": "1.0.2", "browser_action": { "default_popup": "popup.html", "default_icon": "Logo.png" }, "icons": { "16": "Logo.png", "32": "active_logo.png", "64": "64_logo.png" }, "permissions": [ "tabs", "activeTab", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts.js" ] } ] } |