chrome扩展删除facebook上的div

时间:2012-11-26 11:18:32

标签: google-chrome google-chrome-extension

我是Chrome扩展程序的新手! 我需要帮助在facebook上为sims social创建我的个人分机!!

我不会删除右栏和部分广告!

的manifest.json

    {
"name":"The Sims Social noAds",
"version":"1.0",
"manifest_version": 2,
"description":"Rimuovere tutto quello che non serve dalla pagina del gioco The sims   Social",
"content_scripts":[{
"matches":["http://apps.facebook.com/thesimssocial/*"],
"js":["script.js"]
}]}

的script.js

document.querySelector('div.rightCol').style.display = 'none';

有人可以帮助我!??!? TNX !!

1 个答案:

答案 0 :(得分:2)

rightCol是div的 id ,而不是类名。因此,您应该使用document.querySelector('#rightCol')代替。

有关选择器的语法,Google css选择器或查看http://www.w3schools.com/cssref/css_selectors.asp。您也可以右键单击目标元素并选择 Inspect Element ,然后您将在下面看到这些选择器。 enter image description here