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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |