Grid overlay
Just the basic grid overlay, no frills.
O que é Grid overlay?
Grid overlay é uma extensão do Chrome desenvolvida por rplusj, e sua principal característica é "Just the basic grid overlay, no frills.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Grid overlay
Baixe arquivos de extensão Grid overlay 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
Grid Overlay I was unable to find any good "Grid overlay" extension. So I made one. Just a basic grid overlay, nothing fancy. Movement of the grid: LEFT : ctrl + h UP : ctrl + j DOWN : ctrl + k RIGHT : ctrl + l Coming up in next release: Customizable grid > color horizontal and vertical both. > size
Informações Básicas da Extensão
Nome | |
ID | fhiiepkchgbbphlinedpaoijhianakpn |
URL Oficial | https://chrome.google.com/webstore/detail/grid-overlay/fhiiepkchgbbphlinedpaoijhianakpn |
Descrição | Just the basic grid overlay, no frills. |
Tamanho do Arquivo | 177 KB |
Contagem de Instalações | 718 |
Versão Atual | 0.0.1 |
Última Atualização | 2015-06-19 |
Data de Publicação | 2015-06-19 |
Classificação | 2.50/5 Total de 8 Avaliações |
Desenvolvedor | rplusj |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Grid overlay", "version": "0.0.1", "manifest_version": 2, "description": "Just the basic grid overlay, no frills.", "homepage_url": "http:\/\/DomainNotPurchased.com", "icons": { "16": "icons\/ico.png", "48": "icons\/ico.png", "128": "icons\/ico.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/ico.png", "default_title": "Grid overlay - no frills" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery\/jquery.js", "src\/inject\/inject.js" ] } ] } |