Search Box Aid
Pre-populates search boxes
O que é Search Box Aid?
Search Box Aid é uma extensão do Chrome desenvolvida por Easy Life Labs, e sua principal característica é "Pre-populates search boxes".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Search Box Aid
Baixe arquivos de extensão Search Box Aid 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
Pre-populates search boxes on supported websites so you don't have to re-type your search term over and over again. For example, Search Aid captures the last search term used on Amazon.com, so when you visit Ebay.com your term is pre-populated on the search box. The captured search term expires after a few minutes, after which it is no longer used. Dear Developers, The code is available on github, you can now add more sites for this to support. https://github.com/rogerade/search-aid Supports Sites: Alibaba Amazon Argos Boots Clarks Debenhams Ebay Goldsmiths House Of Fraser John Lewis MAC Marks and Spencer Mothercare River Island Selfridges Topshop
Informações Básicas da Extensão
Nome | |
ID | bnjaafgdeekhoennjocdfdfcfiefpcfk |
URL Oficial | https://chrome.google.com/webstore/detail/search-box-aid/bnjaafgdeekhoennjocdfdfcfiefpcfk |
Descrição | Pre-populates search boxes |
Tamanho do Arquivo | 11.75 KB |
Contagem de Instalações | 12 |
Versão Atual | 1.0.0.2 |
Última Atualização | 2015-10-30 |
Data de Publicação | 2015-10-30 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Easy Life Labs |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search Box Aid", "description": "Pre-populates search boxes", "version": "1.0.0.2", "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "logic\/site_handlers.js", "logic\/main.js", "logic\/global_utils.js", "background.js" ], "persistent": false }, "page_action": { "default_name": "Search Box Aid", "default_popup": "popup\/popup.html", "default_icon": "images\/marker.png", "default_title": "Search Box Aid" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "64": "images\/icon64.png" }, "manifest_version": 2 } |