Chrome extension wont inject javascript for Twitter -
my chrome extension wont inject javascript when viewing twitter.
my json this
"content_scripts": [ { "matches": ["https://www.twitter.com/*"], "run_at": "document_end", "js": ["jsfunc.js"] } ],
and js simple alert("it works");
if change matches http://www.google.com/*
works when open google.com, see alert.
but when set matches https://www.twitter.com/*
, open twitter, never see alert...
why work google , not twitter? way fix it?
twitter redirects https://www.twitter.com/
https://twitter.com/
.
Comments
Post a Comment