Grid overlay
Just the basic grid overlay, no frills.
Was ist Grid overlay?
Grid overlay ist eine Chrome-Erweiterung, die von rplusj entwickelt wurde, und ihr Hauptmerkmal ist "Just the basic grid overlay, no frills.".
Erweiterungsscreenshots
Grid overlay-Erweiterungs-CRX-Datei herunterladen
Laden Sie Grid overlay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fhiiepkchgbbphlinedpaoijhianakpn |
| Offizielle URL | https://chrome.google.com/webstore/detail/grid-overlay/fhiiepkchgbbphlinedpaoijhianakpn |
| Beschreibung | Just the basic grid overlay, no frills. |
| Dateigröße | 177 KB |
| Installationsanzahl | 718 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2015-06-19 |
| Veröffentlichungsdatum | 2015-06-19 |
| Bewertung | 2.50/5 Insgesamt 8 Bewertungen |
| Entwickler | rplusj |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |