Drag Design
This extension allows you to drag each element of your website around individually to help you get your site just right.
什么是Drag Design?
Drag Design是由Josh Cronin开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to drag each element of your website around individually to help you get your site just right.”。
扩展截图
下载Drag Design扩展crx文件
下载Drag Design扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to drag all or individual elements of a website. You can also edit the content of all or individual elements. This extension is great for anyone designing a web page but can't decide what to put where. It's easy to use and simple to get the hang of. You can drag elements and all of the items inside it as a group or you can drag every element individually. You can edit text on the whole web page, or just a single paragraph, with ease. Author - Josh Cronin
扩展基本信息
名称 | Drag Design |
ID | ojakcmmkjeffinjapolfoahfagdgelfk |
官方URL | https://chromewebstore.google.com/detail/drag-design/ojakcmmkjeffinjapolfoahfagdgelfk |
简介 | This extension allows you to drag each element of your website around individually to help you get your site just right. |
文件大小 | 137 KB |
安装次数 | 1,849 |
当前版本 | 1.1 |
更新时间 | 2014-02-13 |
上架时间 | 2014-02-13 |
评分 | 3.35/5 共17次评分 |
开发者 | Josh Cronin |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Drag Design", "short_name": "Drag Design", "description": "This extension allows you to drag each element of your website around individually to help you get your site just right.", "version": "1.1", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "web_accessible_resources": [ "js\/jquery\/jquery-ui.min.js", "js\/jquery\/jquery.min.js", "js\/jquery\/jquery.min.map", "img\/notification_icon.png" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery\/jquery.min.js", "js\/jquery\/jquery-ui.min.js", "js\/injectscript.js" ], "run_at": "document_start" } ], "permissions": [ "notifications", "tabs", "contextMenus" ], "browser_action": { "default_icon": "img\/icon.png", "default_title": "Click to enable" }, "background": { "scripts": [ "js\/background.js" ] } } |