How to prevent a chrome extension from running on chrome:// urlsHow do I remove a property from a JavaScript object?How do I modify the URL without reloading the page?How do I remove a particular element from an array in JavaScript?How do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?How do I get ASP.NET Web API to return JSON instead of XML using Chrome?How do I return the response from an asynchronous call?chrome.tabs.executeScript: Cannot access a chrome:// URLWhat type of method to use for injecting script into page on page load?Chrome extension: callback in backgroud.js to popup.jschrome extension: executeScript refreshes popup.html

Which lens has the same capability of lens mounted in Nikon P1000?

What would influence an alien race to map their planet in a way other than the traditional map of the Earth

Why weren't the Death Star plans transmitted electronically?

May I know how to stop these death waves?

What exactly did this mechanic sabotage on the American Airlines 737, and how dangerous was it?

Why does C++ have 'Undefined Behaviour' and other languages like C# or Java don't?

Why is volatility skew/smile for long term options flatter compare to short term options?

Beyond Futuristic Technology for an Alien Warship?

Lost Update Understanding

My Project Manager does not accept carry-over in Scrum, Is that normal?

Am I storing my camera the wrong way, in a dry box with humidity between 37-48?

Why did UK NHS pay for homeopathic treatments?

Windows 10 deletes lots of tiny files super slowly. Anything that can be done to speed it up?

Received a package but didn't order it

Would you write key signatures for non-conventional scales?

How to justify getting additional team member when the current team is doing well?

I transpose the source code, you transpose the input!

Why, even after his imprisonment, people keep calling Hannibal Lecter "Doctor"?

Is differentiation as a map discontinuous?

Why is 6. Nge2 better, and 7. d5 a necessary push in this game?

How to deal with a Homophobic PC

Does every piano need tuning every year?

Convex hull in a discrete space

If a spaceship ran out of fuel somewhere in space between Earth and Mars, does it slowly drift off to Sun?



How to prevent a chrome extension from running on chrome:// urls


How do I remove a property from a JavaScript object?How do I modify the URL without reloading the page?How do I remove a particular element from an array in JavaScript?How do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?How do I get ASP.NET Web API to return JSON instead of XML using Chrome?How do I return the response from an asynchronous call?chrome.tabs.executeScript: Cannot access a chrome:// URLWhat type of method to use for injecting script into page on page load?Chrome extension: callback in backgroud.js to popup.jschrome extension: executeScript refreshes popup.html






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















My Chrome extension throws an error if I try to open the popup.html on chrome:// urls.



I have set the callback function to prevent this:



/ Inject the payload.js script into the current tab after the popout has loaded
window.addEventListener('load', function (evt)
// catching injecting into chrome:// pages error
chrome.extension.getBackgroundPage().chrome.tabs.executeScript(null,
file: 'js/payload.js'
, ()=>
if(chrome.runtime.lastError)
console.log("injecting error");

);;
);


The error is however still showing up. Is there any way of permitting "chrome://*/" in my manifest file?










share|improve this question
























  • Remove console.log but leave the if line and there'll be no error. Also there's no need for chrome.extension.getBackgroundPage() - where did you get that? If it's on StackOverflow, I'd like to remove this wrong info as I see it too often.

    – wOxxOm
    Mar 28 at 18:35











  • @wOxxOm working perfectly, feel free to make an answer and please include why the console.log() was a problem, I am curious

    – user10756951
    Mar 28 at 18:38











  • console.log writes "injecting error" to the console so when you remove console.log nothing is written to the console - provided you still access chrome.runtime.lastError.

    – wOxxOm
    Mar 28 at 18:39

















0















My Chrome extension throws an error if I try to open the popup.html on chrome:// urls.



I have set the callback function to prevent this:



/ Inject the payload.js script into the current tab after the popout has loaded
window.addEventListener('load', function (evt)
// catching injecting into chrome:// pages error
chrome.extension.getBackgroundPage().chrome.tabs.executeScript(null,
file: 'js/payload.js'
, ()=>
if(chrome.runtime.lastError)
console.log("injecting error");

);;
);


The error is however still showing up. Is there any way of permitting "chrome://*/" in my manifest file?










share|improve this question
























  • Remove console.log but leave the if line and there'll be no error. Also there's no need for chrome.extension.getBackgroundPage() - where did you get that? If it's on StackOverflow, I'd like to remove this wrong info as I see it too often.

    – wOxxOm
    Mar 28 at 18:35











  • @wOxxOm working perfectly, feel free to make an answer and please include why the console.log() was a problem, I am curious

    – user10756951
    Mar 28 at 18:38











  • console.log writes "injecting error" to the console so when you remove console.log nothing is written to the console - provided you still access chrome.runtime.lastError.

    – wOxxOm
    Mar 28 at 18:39













0












0








0








My Chrome extension throws an error if I try to open the popup.html on chrome:// urls.



I have set the callback function to prevent this:



/ Inject the payload.js script into the current tab after the popout has loaded
window.addEventListener('load', function (evt)
// catching injecting into chrome:// pages error
chrome.extension.getBackgroundPage().chrome.tabs.executeScript(null,
file: 'js/payload.js'
, ()=>
if(chrome.runtime.lastError)
console.log("injecting error");

);;
);


The error is however still showing up. Is there any way of permitting "chrome://*/" in my manifest file?










share|improve this question














My Chrome extension throws an error if I try to open the popup.html on chrome:// urls.



I have set the callback function to prevent this:



/ Inject the payload.js script into the current tab after the popout has loaded
window.addEventListener('load', function (evt)
// catching injecting into chrome:// pages error
chrome.extension.getBackgroundPage().chrome.tabs.executeScript(null,
file: 'js/payload.js'
, ()=>
if(chrome.runtime.lastError)
console.log("injecting error");

);;
);


The error is however still showing up. Is there any way of permitting "chrome://*/" in my manifest file?







javascript json google-chrome-extension






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 18:24







user10756951






















  • Remove console.log but leave the if line and there'll be no error. Also there's no need for chrome.extension.getBackgroundPage() - where did you get that? If it's on StackOverflow, I'd like to remove this wrong info as I see it too often.

    – wOxxOm
    Mar 28 at 18:35











  • @wOxxOm working perfectly, feel free to make an answer and please include why the console.log() was a problem, I am curious

    – user10756951
    Mar 28 at 18:38











  • console.log writes "injecting error" to the console so when you remove console.log nothing is written to the console - provided you still access chrome.runtime.lastError.

    – wOxxOm
    Mar 28 at 18:39

















  • Remove console.log but leave the if line and there'll be no error. Also there's no need for chrome.extension.getBackgroundPage() - where did you get that? If it's on StackOverflow, I'd like to remove this wrong info as I see it too often.

    – wOxxOm
    Mar 28 at 18:35











  • @wOxxOm working perfectly, feel free to make an answer and please include why the console.log() was a problem, I am curious

    – user10756951
    Mar 28 at 18:38











  • console.log writes "injecting error" to the console so when you remove console.log nothing is written to the console - provided you still access chrome.runtime.lastError.

    – wOxxOm
    Mar 28 at 18:39
















Remove console.log but leave the if line and there'll be no error. Also there's no need for chrome.extension.getBackgroundPage() - where did you get that? If it's on StackOverflow, I'd like to remove this wrong info as I see it too often.

– wOxxOm
Mar 28 at 18:35





Remove console.log but leave the if line and there'll be no error. Also there's no need for chrome.extension.getBackgroundPage() - where did you get that? If it's on StackOverflow, I'd like to remove this wrong info as I see it too often.

– wOxxOm
Mar 28 at 18:35













@wOxxOm working perfectly, feel free to make an answer and please include why the console.log() was a problem, I am curious

– user10756951
Mar 28 at 18:38





@wOxxOm working perfectly, feel free to make an answer and please include why the console.log() was a problem, I am curious

– user10756951
Mar 28 at 18:38













console.log writes "injecting error" to the console so when you remove console.log nothing is written to the console - provided you still access chrome.runtime.lastError.

– wOxxOm
Mar 28 at 18:39





console.log writes "injecting error" to the console so when you remove console.log nothing is written to the console - provided you still access chrome.runtime.lastError.

– wOxxOm
Mar 28 at 18:39












0






active

oldest

votes














Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55404505%2fhow-to-prevent-a-chrome-extension-from-running-on-chrome-urls%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown
























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55404505%2fhow-to-prevent-a-chrome-extension-from-running-on-chrome-urls%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript