Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Match port in Chrome extension pattern

Reading this list of Chrome match patterns: http://code.google.com/chrome/extensions/match_patterns.html

How do I specify a match for a URL that depends on a port? Like

http://localhost:8080
http://kevinburke.com:5000/index.php

for example.

Thanks, Kevin

like image 730
Kevin Burke Avatar asked Jul 11 '12 04:07

Kevin Burke


1 Answers

You get access to all ports.

"http://localhost/*", "http://kevinburke.com/*"
like image 101
Silviu-Marian Avatar answered Oct 22 '22 13:10

Silviu-Marian