Legit Profile Extension
Makes your social profile looks legit!
ما هو Legit Profile Extension؟
Legit Profile Extension هو إضافة Chrome تم تطويرها بواسطة rizafahmi، والميزة الرئيسية لها هي "Makes your social profile looks legit!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Legit Profile Extension
قم بتنزيل ملفات الامتداد Legit Profile Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
🍰 makes your social profile such as github looks legit! Add PRO label for you who hasn't, and more to come. The code is available at https://github.com/rizafahmi/legit-chrome-extension for you who wants to learn how to create chrome extension. Contribution welcome!
معلومات أساسية عن التمديد
الاسم | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
الوصف | Makes your social profile looks legit! |
حجم الملف | 7.82 KB |
عدد التثبيتات | 16 |
النسخة الحالية | 0.2.0 |
آخر تحديث | 2019-01-11 |
تاريخ النشر | 2019-01-10 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | rizafahmi |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://rizafahmi.com/ |
عنوان صفحة المساعدة | https://github.com/rizafahmi/legit-chrome-extension |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Legit Profile Extension", "description": "Makes your social profile looks legit!", "author": "Riza Fahmi", "version": "0.2.0", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab" ], "browser_action": { "default_icon": "legit-icon.png", "default_title": "Shot and share!" }, "background": { "persistent": false, "scripts": [ "background.js" ] } } |