Grid overlay

Just the basic grid overlay, no frills.

Grid overlay क्या है?

Grid overlay rplusj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Just the basic grid overlay, no frills."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Grid overlay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}