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