Rafal T
Rafal T

Reputation: 339

Debugging popup extensions

When I open:
Incpect Popup
Next select tab scripts
I get samtimes empty list scriprs.

I write a simply extension manifest.json (my minimum)

{
  "name": "TEST",
  "version": "1.0",
  "browser_action": {
        "popup": "popup.html"
    }
}

Popup.html

<!DOCTYPE html>
<html>
<head>
    <script src="popup.js"></script>
</head>
<body>
<h1>TEST1</h1>
<div id="content">
TEST
</div>
</body>
</html>

popup.js

console.log('test OK');

Sometimes I get list but not with all my js files.
This file is only short example. I send to console message, and I see this message and I see this file in resource, but i not see in the scripts tab.

My chrome version is 9.0.597.98.
I try with other version and I have the same problem. Empty

Upvotes: 0

Views: 141

Answers (1)

Mohamed Mansour
Mohamed Mansour

Reputation: 40169

During the next update, this will be solved. If it doesn't, please submit a bug in http://crbug.com/new

Upvotes: 1

Related Questions