How to access local Google Chrome resources

I am developing a Google Chrome extension. Is there a way to access thumbnails of top sites I get the following error.

Not allowed to load local resource: chrome-search://thumb/https://www.google.lk/ 

(But if I open this url directly from the browser, I see the image) Are there any permissions that I have to mention in the manifest file, or we can’t access them?

Update

I tried with permission <all_urls>. But still I can’t access them.

+3
source share
2 answers

I must be honest with you: you cannot.

- ( , : ), html2canvas -, phantomjs wkhtmltopdf , ( , ), .

( 2009 !), google, , (, favicon).

, https://developer.chrome.com/extensions/tabs#method-captureVisibleTab

, , , .

+2

,

"permissions": [
    "file:///*"
]

Chrome

0

All Articles