I write atypical property for DOM element in Chrome's Console:
document.getElementById('some_id').atypical_property = 'some text'
After, I try to read atypical_property in content_script.js:
alert(document.getElementById('some_id').atypical_property);
But this is unedfined! Ok. I try to read atypical_property in Chrome's Console and this is 'some text'! Run_at changing in manifest don't change result. I try use setTimeout, but many timer's iteration with delay 500 ms don't change result (typeof document.getElementById('some_id').atypical_property == "undefined")
The example with Chrome's console is example. In really script on website set atypical property and I hope to read it. Can I read this property?
Thanks in advance.