前端开发

对于已有的系统,没有源代码,易用性不好!想获得较好的前端体验

很有意思,一切尽在掌握的感觉,呵呵!!!

原来一直觉得12306抢票工具做得很神奇,最近研究了一下,也大致根据自己的项目,做了一点开发,不过只能只对chrome,基于谷歌的插件开发

开发步骤大致记录一下:

1.manifest.json格式

{

"name":"xxxx",

"version":"2.0",

"content_scripts":[{

"all_frames":true,

"exclude_globs":[],

"exclude_matches":[],

"include_globs":[],

"js":["jquery-1.7.1.min.js","background.js"],

"matches":["http://10.106.2.53:18082/*"],

"run_at":"document_end"

}

],

"browser_action":{

"default_title":"Test"

},

"manifest_version":2,

"permissions":["activeTab","https://*/*"],

"background":{

"page":"background.html"

}

}

2.谷歌API的熟悉,js以及关于js各种类库的使用

对于IE好像没有比较好的方法,不过可以使用fiddler工具做一些转化

以下有个文章:

http://www.iinterest.net/2010/08/17/fiddler-debug-css-js/

相关推荐