Legit Profile Extension
Makes your social profile looks legit!
O que é Legit Profile Extension?
Legit Profile Extension é uma extensão do Chrome desenvolvida por rizafahmi, e sua principal característica é "Makes your social profile looks legit!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Legit Profile Extension
Baixe arquivos de extensão Legit Profile Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
🍰 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!
Informações Básicas da Extensão
Nome | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
URL Oficial | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
Descrição | Makes your social profile looks legit! |
Tamanho do Arquivo | 7.82 KB |
Contagem de Instalações | 16 |
Versão Atual | 0.2.0 |
Última Atualização | 2019-01-11 |
Data de Publicação | 2019-01-10 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | rizafahmi |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://rizafahmi.com/ |
URL da Página de Ajuda | https://github.com/rizafahmi/legit-chrome-extension |
Idiomas Suportados | 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" ] } } |