EasyBB
EasyBB

Reputation: 6574

Chrome Extensions Manifest Images

     "browser_action": {
       "icons": {
        "16": "rsz_icon.png",
        "48":"rsz_1icon48.png",
        "128":"icon.png"
        }, 
       }

These are the icons, yet when I downloaded the extension I still get the Puzzle Piece can anyone explain to me why this is?

Upvotes: 0

Views: 150

Answers (1)

Prabu
Prabu

Reputation: 2298

Are you talking about the puzzle piece displayed in the address bar? If so you should set the icon in browser_action section.

"browser_action": {
   "default_icon": {                    // optional
     "19": "images/icon19.png",           // optional
     "38": "images/icon38.png"            // optional
   },
   "default_title": "Google Mail",      // optional; shown in tooltip
   "default_popup": "popup.html"        // optional
}

http://developer.chrome.com/extensions/browserAction.html

Upvotes: 2

Related Questions