Grid System
Grid System for web development
Grid Systemとは何ですか?
Grid SystemはPavel Fomichevによって開発されたChromeの拡張機能で、その主な機能は「Grid System for web development」です。
拡張機能のスクリーンショット
Grid System拡張機能のCRXファイルをダウンロード
Grid System拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Grid System for web development
拡張機能の基本情報
名前 | |
ID | mhdiagjmgbkgeeppcohbjboloihjljho |
公式URL | https://chrome.google.com/webstore/detail/grid-system/mhdiagjmgbkgeeppcohbjboloihjljho |
説明 | Grid System for web development |
ファイルサイズ | 8.57 KB |
インストール数 | 4,000 |
現在のバージョン | 1.1 |
最終更新日 | 2014-08-29 |
公開日 | 2014-08-29 |
評価 | 3.29/5 合計 17 レビュー |
開発者 | Pavel Fomichev |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Grid System", "short_name": "Grid System for web development", "description": "Grid System for web development", "version": "1.1", "author": "Pavel Fomichev", "offline_enabled": true, "icons": { "16": "grid16.png", "48": "grid48.png", "128": "grid128.png" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_idle", "js": [ "grid-content.js" ] } ], "browser_action": { "default_icon": "grid19.png", "default_title": "Grid System", "default_popup": "grid.html" } } |