Legit Profile Extension
Makes your social profile looks legit!
Vad är Legit Profile Extension?
Legit Profile Extension är en Chrome-tillägg utvecklad av rizafahmi, och dess huvudfunktion är "Makes your social profile looks legit!".
Tilläggsskärmbilder
Ladda ner Legit Profile Extension-förlängningens CRX-fil
Ladda ner Legit Profile Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
🍰 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! Grundläggande Information om Tillägg
| Namn | |
| ID | lkdnblfhfglpaiibilipagobbeaofphg |
| Officiell webbadress | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
| Beskrivning | Makes your social profile looks legit! |
| Filstorlek | 7.82 KB |
| Antal Installationer | 16 |
| Aktuell Version | 0.2.0 |
| Senast Uppdaterad | 2019-01-11 |
| Publiceringsdatum | 2019-01-10 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | rizafahmi |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://rizafahmi.com/ |
| Hjälpsida URL | https://github.com/rizafahmi/legit-chrome-extension |
| Stödda Språk | 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"
]
}
} | |