Grid overlay
Just the basic grid overlay, no frills.
Wat is Grid overlay?
Grid overlay is een Chrome-extensie ontwikkeld door rplusj, en de belangrijkste functie is "Just the basic grid overlay, no frills.".
Extensie Screenshots
Download het CRX-bestand van de extensie Grid overlay
Download Grid overlay-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | fhiiepkchgbbphlinedpaoijhianakpn |
| Officiële URL | https://chrome.google.com/webstore/detail/grid-overlay/fhiiepkchgbbphlinedpaoijhianakpn |
| Beschrijving | Just the basic grid overlay, no frills. |
| Bestandsgrootte | 177 KB |
| Aantal Installaties | 718 |
| Huidige Versie | 0.0.1 |
| Laatst Bijgewerkt | 2015-06-19 |
| Publicatiedatum | 2015-06-19 |
| Beoordeling | 2.50/5 Totaal 8 Beoordelingen |
| Ontwikkelaar | rplusj |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |