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