Luckydog Winner Generator Tool
Parse FB comments/reactions/shares and import them into Luckydog Winner Generator
ما هو Luckydog Winner Generator Tool؟
Luckydog Winner Generator Tool هو إضافة Chrome تم تطويرها بواسطة https://www.luckydog.tw، والميزة الرئيسية لها هي "Parse FB comments/reactions/shares and import them into Luckydog Winner Generator".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Luckydog Winner Generator Tool
قم بتنزيل ملفات الامتداد Luckydog Winner Generator Tool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
If you need to combine "comment", "reaction" and "share" as qualifier for drawing, or you need to use luckydog's winner form, you need to use luckydog chrome extension to fetch and parse "comment", "reaction" and "share" and then import to the luckydog chrome extension winner generator.
معلومات أساسية عن التمديد
الاسم | Luckydog Winner Generator Tool |
ID | fjjmlofpfnccdaiplopjkgeifgbhiccl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/luckydog-winner-generator/fjjmlofpfnccdaiplopjkgeifgbhiccl |
الوصف | Parse FB comments/reactions/shares and import them into Luckydog Winner Generator |
حجم الملف | 62.9 KB |
عدد التثبيتات | 2,224 |
النسخة الحالية | 1.3.6 |
آخر تحديث | 2020-04-12 |
تاريخ النشر | 2020-04-08 |
المطور | https://www.luckydog.tw |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.luckydog.tw/winnervip/chrome-extension |
عنوان صفحة سياسة الخصوصية | https://www.luckydog.tw/jsp/help/privacy.jsp |
اللغات المدعومة | en,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Luckydog Winner Generator Tool", "description": "Parse FB comments\/reactions\/shares and import them into Luckydog Winner Generator", "version": "1.3.6", "default_locale": "en", "page_action": { "default_popup": "popup.html", "default_title": "Luckydog Extension" }, "icons": { "16": "logo-small.png", "128": "logo-large.png" }, "background": { "scripts": [ "jquery-3.2.1.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content_facebook.js" ] }, { "matches": [ "*:\/\/localhost\/*", "*:\/\/*.luckydog.tw\/*" ], "js": [ "jquery-3.2.1.min.js", "bootstrap-4.0.0.min.js", "content_luckydog.js" ] } ], "web_accessible_resources": [ "jquery-3.2.1.min.js" ], "permissions": [ "tabs", "declarativeContent" ] } |