Grid overlay
Just the basic grid overlay, no frills.
Qu'est-ce que Grid overlay ?
Grid overlay est une extension Chrome développée par rplusj, et sa fonction principale est "Just the basic grid overlay, no frills.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Grid overlay
Téléchargez les fichiers d'extension Grid overlay au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | fhiiepkchgbbphlinedpaoijhianakpn |
URL Officiel | https://chrome.google.com/webstore/detail/grid-overlay/fhiiepkchgbbphlinedpaoijhianakpn |
Description | Just the basic grid overlay, no frills. |
Taille du Fichier | 177 KB |
Nombre d'Installations | 718 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2015-06-19 |
Date de Publication | 2015-06-19 |
Évaluation | 2.50/5 Total 8 Évaluations |
Développeur | rplusj |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |