chrome-extension://${id}/nhc.htm#url=${url}
up vote
1
down vote
favorite
I have a problem with running the Google plugin IE-TAB on the webpage.
<a href="chrome-extension://`{ID}`/nhc.htm#url=`{URL}`">testClick</a>
Jump to blank page when clicking on a tag.
Is there any other way to open the Google Chrome plugin in html or js?
javascript google-chrome google-chrome-extension
add a comment |
up vote
1
down vote
favorite
I have a problem with running the Google plugin IE-TAB on the webpage.
<a href="chrome-extension://`{ID}`/nhc.htm#url=`{URL}`">testClick</a>
Jump to blank page when clicking on a tag.
Is there any other way to open the Google Chrome plugin in html or js?
javascript google-chrome google-chrome-extension
Only those pages that the extension exposes via web_accessible_resources.
– wOxxOm
Nov 20 at 9:19
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a problem with running the Google plugin IE-TAB on the webpage.
<a href="chrome-extension://`{ID}`/nhc.htm#url=`{URL}`">testClick</a>
Jump to blank page when clicking on a tag.
Is there any other way to open the Google Chrome plugin in html or js?
javascript google-chrome google-chrome-extension
I have a problem with running the Google plugin IE-TAB on the webpage.
<a href="chrome-extension://`{ID}`/nhc.htm#url=`{URL}`">testClick</a>
Jump to blank page when clicking on a tag.
Is there any other way to open the Google Chrome plugin in html or js?
javascript google-chrome google-chrome-extension
javascript google-chrome google-chrome-extension
asked Nov 20 at 9:13
chb
61
61
Only those pages that the extension exposes via web_accessible_resources.
– wOxxOm
Nov 20 at 9:19
add a comment |
Only those pages that the extension exposes via web_accessible_resources.
– wOxxOm
Nov 20 at 9:19
Only those pages that the extension exposes via web_accessible_resources.
– wOxxOm
Nov 20 at 9:19
Only those pages that the extension exposes via web_accessible_resources.
– wOxxOm
Nov 20 at 9:19
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
chrome-extension:
URL schema is privileged (like chrome:
for Chrome internal pages, for example).
A web page context cannot initiate navigation to those pages. It will be intercepted and redirected to about:blank
.
As wOxxOm mentions in a comment, it's possible for the extension to whitelist some of its URLs as usable in web contexts through web_accessible_resources
.
Since you're asking about an existing 3rd party extension IE Tab, bad news for you:
"web_accessible_resources": [
"js/extapi_wp.js",
"js/ietabapi_wp.js",
"redir.htm"
],
/nhc.htm
is not on the list, so you can't (short of making your own version of IE Tab) do that.
I added the nhc.htm configuration to web_accessible_resources, but still can't jump to the specified link, or jump to about:blank
– chb
Nov 21 at 2:43
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
chrome-extension:
URL schema is privileged (like chrome:
for Chrome internal pages, for example).
A web page context cannot initiate navigation to those pages. It will be intercepted and redirected to about:blank
.
As wOxxOm mentions in a comment, it's possible for the extension to whitelist some of its URLs as usable in web contexts through web_accessible_resources
.
Since you're asking about an existing 3rd party extension IE Tab, bad news for you:
"web_accessible_resources": [
"js/extapi_wp.js",
"js/ietabapi_wp.js",
"redir.htm"
],
/nhc.htm
is not on the list, so you can't (short of making your own version of IE Tab) do that.
I added the nhc.htm configuration to web_accessible_resources, but still can't jump to the specified link, or jump to about:blank
– chb
Nov 21 at 2:43
add a comment |
up vote
1
down vote
chrome-extension:
URL schema is privileged (like chrome:
for Chrome internal pages, for example).
A web page context cannot initiate navigation to those pages. It will be intercepted and redirected to about:blank
.
As wOxxOm mentions in a comment, it's possible for the extension to whitelist some of its URLs as usable in web contexts through web_accessible_resources
.
Since you're asking about an existing 3rd party extension IE Tab, bad news for you:
"web_accessible_resources": [
"js/extapi_wp.js",
"js/ietabapi_wp.js",
"redir.htm"
],
/nhc.htm
is not on the list, so you can't (short of making your own version of IE Tab) do that.
I added the nhc.htm configuration to web_accessible_resources, but still can't jump to the specified link, or jump to about:blank
– chb
Nov 21 at 2:43
add a comment |
up vote
1
down vote
up vote
1
down vote
chrome-extension:
URL schema is privileged (like chrome:
for Chrome internal pages, for example).
A web page context cannot initiate navigation to those pages. It will be intercepted and redirected to about:blank
.
As wOxxOm mentions in a comment, it's possible for the extension to whitelist some of its URLs as usable in web contexts through web_accessible_resources
.
Since you're asking about an existing 3rd party extension IE Tab, bad news for you:
"web_accessible_resources": [
"js/extapi_wp.js",
"js/ietabapi_wp.js",
"redir.htm"
],
/nhc.htm
is not on the list, so you can't (short of making your own version of IE Tab) do that.
chrome-extension:
URL schema is privileged (like chrome:
for Chrome internal pages, for example).
A web page context cannot initiate navigation to those pages. It will be intercepted and redirected to about:blank
.
As wOxxOm mentions in a comment, it's possible for the extension to whitelist some of its URLs as usable in web contexts through web_accessible_resources
.
Since you're asking about an existing 3rd party extension IE Tab, bad news for you:
"web_accessible_resources": [
"js/extapi_wp.js",
"js/ietabapi_wp.js",
"redir.htm"
],
/nhc.htm
is not on the list, so you can't (short of making your own version of IE Tab) do that.
answered Nov 20 at 13:09
Xan
53k10101128
53k10101128
I added the nhc.htm configuration to web_accessible_resources, but still can't jump to the specified link, or jump to about:blank
– chb
Nov 21 at 2:43
add a comment |
I added the nhc.htm configuration to web_accessible_resources, but still can't jump to the specified link, or jump to about:blank
– chb
Nov 21 at 2:43
I added the nhc.htm configuration to web_accessible_resources, but still can't jump to the specified link, or jump to about:blank
– chb
Nov 21 at 2:43
I added the nhc.htm configuration to web_accessible_resources, but still can't jump to the specified link, or jump to about:blank
– chb
Nov 21 at 2:43
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53389663%2fchrome-extension-id-nhc-htmurl-url%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Only those pages that the extension exposes via web_accessible_resources.
– wOxxOm
Nov 20 at 9:19