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