Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is there an add on do the same as Pixel Perfect for firefox or chrome? [closed]

Pixel Perfect https://addons.mozilla.org/en-US/firefox/addon/pixel-perfect/
Is not working any more on FF6 and seams that they will not update it, is there any existing add on or way to do the same thing this add on was doing?

About this Add-on

By toggling the composition on and off, the developer can visually see how many pixels they are off in development.

Pixel Perfect also has an opacity option so that you can view the HTML below the composition. By being able to see both the composition and the HTML you can now simultaneously use Firebug while Pixel Perfect is still in action.

  • Requires Firebug
like image 419
Amr Elgarhy Avatar asked Sep 08 '11 01:09

Amr Elgarhy


People also ask

Are Firefox and Chrome extensions the same?

Firefox supports both the chrome and browser namespaces This means that many Chrome extensions will just work in Firefox without any changes.

How do you use pixel perfect on Chrome?

Perfect Pixel (Google Chrome plugin)Once you install the plugin from google chrome store, you are going to see the 'Perfect Pixel Icon' on the right navbar. When you click, the drop zone of an image will show up. You just have to drag&drop your mockup. Then that mockup will appear above your website.

Is Firefox safer than Chrome?

The Verdict With your security settings fully optimised, there is not a huge difference between Firefox and Chrome. That said, many cyber security experts consider Chrome to be the market leader for a range of anti-malware threats that you might come into contact with while browsing.


2 Answers

For Google Chrome try "PerfectPixel by WellDoneCode" extension: https://chrome.google.com/webstore/detail/dkaagdgjmgdmbnecmcefdhjekcoceebi

IMHO it's the best PP analogue in Chrome Web Store

like image 188
Alex Belozerov Avatar answered Oct 03 '22 17:10

Alex Belozerov


Yes, there is an alternative, and it's cross browser and future proof:

body {
  background-image: url(design.jpg);
  background-repeat: no-repeat;
  background-position: top center; /* adjust to whatever you like. */
  opacity: 0.6; /* see through the page */
}

Granted, a plugin such as PixelPerfect is nice, but if you run into bugs or other issues with it, then it's not worth it.

Alternatively, you can do something such as this: Install "Power Menu" (on Windows) or equivalent software. Power Menu lets you change the opacity of OS windows. Now open the comp in your image preview software, reduce opacity of the window, and drag on top of your browser.

This might not answer the question directly, but I'm pointing out alternative solutions which do not involve browser plugins, which may have been overlooked.

like image 33
Rolf Avatar answered Oct 03 '22 17:10

Rolf