The reason why it doesn't work is because Linux's filesystem is case sensitive. I checked your manifest, you defined your icon to be icon128.png, while you have Icon128.png. In the Windows world, that will work fine, but in a Unix world, that wont.
To be cross platform, make sure you are consistent on how you name your files, you used lowercase names in the manifest, would be better to use lowercase for the image names. By the way, neat extension! I like the approach on how you implemented the capturing whole screen :) By using Canvas in HTML5, you took many tab captures and pasted them together and removed the scrollbar too. Great! -Mohamed Mansour On Thu, Jan 7, 2010 at 8:08 AM, Amina <[email protected]> wrote: > On linux machines (tested on Ubunto and Gentoo), my extension doesn't > work. > We get a message: "«Could not load extension icon 'icon128.png'.»" > > I understand that it's because my extension contain "Icon128.png". > We rename it to "icon128.png" and it's worked. > > Before the rename, it was work on Microsoft machines, but not on > Linux > machines. > > My extension URL: > > https://chrome.google.com/extensions/detail/ckibcdccnfeookdmbahgiakhnjcddpki > ---- > fileName.toLowerCase(); > --- > I also reported it as an issue (http://code.google.com/p/chromium/ > issues/detail?id=31743) > > -- > You received this message because you are subscribed to the Google Groups > "Chromium-extensions" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<chromium-extensions%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/chromium-extensions?hl=en. > > > >--
You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/chromium-extensions?hl=en.
