I've created chrome extension for better productivity using content script
but it's not being loaded on pages like
chrome://settings/
chrome-extension://some/extension.html
https://chrome.google.com/webstore/category/extensions
I believe it's some security measure but I couldn't find any official statement.
Is there a way to get additional permission for these pages or somehow got white-listed?
If it's not possible I would really like to provide official link with explanation in my description (or at least list all not supported pages).
EDIT:
My manifest.json file contains permission: "<all_urls>"
and content_scripts
matches all url: "matches": ["<all_urls>"]