1
wong2 2013-07-12 18:24:01 +08:00 1
插件可以访问DOM啊,于是可以用第二种方法得到那个url吧
|
2
chemhack 2013-07-12 18:26:41 +08:00 1
用content_script, 然后在manifest加上权限即可
|
3
ytzong 2013-07-12 19:05:33 +08:00 1
写了个 userscript http://userscripts.org/scripts/show/88597
代码有点乱,但是能跑起来 |
4
pubby 2013-07-12 20:05:19 +08:00 1
自己用的话没必要写插件吧,
在书签栏添加网页,地址写上: javascript:(function(d,id){var x=d.getElementById(id);if(!x){x=d.createElement('div');x.id=id;d.body.insertBefore(x,d.body.firstChild);} x.innerHTML = $.qPlayer.playList.getSongInfoObj().songurl;})(window.document,'su00'); 就ok了。想看mp3地址直接点一下 |
6
seeker 2013-07-12 22:57:02 +08:00 1
用“声海盗”。我写的,http://fm.qq.com/ 这个网址还不支持给文件命名,下个版本做。
WebStore地址:https://chrome.google.com/webstore/detail/%E5%A3%B0%E6%B5%B7%E7%9B%97/idleenniidjlnmnjkjmmnocnkmjibadd |
7
miniwade514 2013-07-13 00:32:47 +08:00 1
给妹子用? 直接装这个好了, 音频、视频、Flash 都抓 ...
用 content script 是可以和 DOM 交互的。 |
8
miniwade514 2013-07-13 00:33:24 +08:00 1
|
9
jesse_luo 2013-07-13 01:15:29 +08:00 1
搞底软的写js路过…别怕…
问题上面大神们都回答了…… |
10
cyfdecyf 2013-07-13 10:34:09 +08:00 1
可以向特定的页面注入 js,在 Chrome 中这个叫做 Content Scripts http://developer.chrome.com/extensions/content_scripts.html
Content Scripts 在网页的 DOM 中执行,如果需要跟插件通信需要使用 Message Passing http://developer.chrome.com/extensions/messaging.html |