Legit Profile Extension
Makes your social profile looks legit!
Legit Profile Extension क्या है?
Legit Profile Extension rizafahmi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes your social profile looks legit!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Legit Profile Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/ |
सहायता पृष्ठ URL | 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" ] } } |