Profile Search for Instagram (Unofficial)
Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.
O que é Profile Search for Instagram (Unofficial)?
Profile Search for Instagram (Unofficial) é uma extensão do Chrome desenvolvida por http://jowo.co, e sua principal característica é "Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Profile Search for Instagram (Unofficial)
Baixe arquivos de extensão Profile Search for Instagram (Unofficial) 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
Informações Básicas da Extensão
Nome | |
ID | ohbdjjgonipbnlgfleogigljggmoogap |
URL Oficial | https://chrome.google.com/webstore/detail/profile-search-for-instag/ohbdjjgonipbnlgfleogigljggmoogap |
Descrição | Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile. |
Tamanho do Arquivo | 26.26 KB |
Contagem de Instalações | 501 |
Versão Atual | 1.5 |
Última Atualização | 2022-02-05 |
Data de Publicação | 2020-08-17 |
Classificação | 5.00/5 Total de 10 Avaliações |
Desenvolvedor | http://jowo.co |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://jowo.co |
URL da Página de Ajuda | https://jowo.co/apps/forms/support/index.html |
URL da Página de Política de Privacidade | https://jowo.co/apps/privacypolicyterms/privacy.html |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Profile Search for Instagram (Unofficial)", "description": "Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.", "version": "1.5", "icons": { "128": "images\/icons\/icon128.png", "48": "images\/icons\/icon48.png", "16": "images\/icons\/icon16.png" }, "browser_action": { "default_icon": "images\/icons\/icon16.png", "default_popup": "html\/popup.html" }, "background": { "scripts": [ "js\/eventPage.js" ], "persistent": true }, "web_accessible_resources": [ "content.js", "content.css" ], "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ], "all_frames": true } ], "options_page": "html\/options.html", "permissions": [ "storage", "contextMenus", "https:\/\/*.instagram.com\/*" ] } |