Grid overlay

Just the basic grid overlay, no frills.

Τι είναι το Grid overlay;

Το Grid overlay είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rplusj, και η κύρια λειτουργία του είναι "Just the basic grid overlay, no frills.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Grid overlay

Λήψη αρχείων επέκτασης Grid overlay σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Grid overlay Grid overlay
ID fhiiepkchgbbphlinedpaoijhianakpn
Επίσημο URL https://chrome.google.com/webstore/detail/grid-overlay/fhiiepkchgbbphlinedpaoijhianakpn
Περιγραφή Just the basic grid overlay, no frills.
Μέγεθος Αρχείου 177 KB
Αριθμός Εγκαταστάσεων 718
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2015-06-19
Ημερομηνία Δημοσίευσης 2015-06-19
Αξιολόγηση 2.50/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής rplusj
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}