Grid overlay
Just the basic grid overlay, no frills.
什麼是Grid overlay?
Grid overlay是由rplusj開發的Chrome擴展程式,該擴展的主要功能是“Just the basic grid overlay, no frills.”。
擴展截圖
下載Grid overlay擴展crx文件
下載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
擴展基本資訊
名稱 | |
ID | fhiiepkchgbbphlinedpaoijhianakpn |
官方網址 | 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" ] } ] } |