├── .gitignore ├── .jpmignore ├── .jshintrc ├── .travis.yml ├── README.md ├── chrome.manifest ├── chrome ├── locale │ ├── de │ │ ├── notification.properties │ │ ├── popup-panel.properties │ │ └── toolbox.properties │ ├── en-US │ │ ├── notification.properties │ │ ├── popup-panel.properties │ │ └── toolbox.properties │ └── zh-CN │ │ ├── notification.properties │ │ ├── popup-panel.properties │ │ └── toolbox.properties └── skin │ └── classic │ └── shared │ ├── logo_16x16.png │ ├── logo_32x32.png │ ├── logo_64x64.png │ ├── resizer.png │ └── ua.css ├── data ├── config.js ├── img │ ├── close.svg │ └── slider.png ├── layer-form.js ├── layer-list.js ├── layer-store.js ├── lib │ ├── bootstrap │ │ └── css │ │ │ └── bootstrap.css │ ├── react │ │ └── react.js │ └── requirejs │ │ └── require.js ├── notification-config.js ├── notification-content.js ├── notification.html ├── notification.js ├── popup-frame-script.js ├── popup-panel.js ├── popup.css ├── popup.html └── popup.js ├── docs └── images │ ├── empty-panel.png │ ├── firebug-integration.png │ ├── layer-form-page.png │ ├── layer-form-panel.png │ ├── popup-panel.png │ └── start-button.png ├── index.js ├── lib ├── first-run.js ├── main.js ├── pixel-perfect-actor.js ├── pixel-perfect-front.js ├── pixel-perfect-popup.js ├── pixel-perfect-store.js ├── pixel-perfect-toolbox-overlay.js ├── start-button.js └── style-editor-overlay.js ├── license.txt ├── package.json └── test ├── common.js ├── frame-script.js ├── test-add-layer.js ├── test-layer-invert.js ├── test-layer-lock.js ├── test-layer-opacity.js ├── test-layer-position.js ├── test-layer-scale.js ├── test-layer-visibility.js ├── test-remove-layer.js ├── test-start-button.js └── test-toggle-popup.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/.gitignore -------------------------------------------------------------------------------- /.jpmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/.jpmignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/README.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/locale/de/notification.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/de/notification.properties -------------------------------------------------------------------------------- /chrome/locale/de/popup-panel.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/de/popup-panel.properties -------------------------------------------------------------------------------- /chrome/locale/de/toolbox.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/de/toolbox.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/notification.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/en-US/notification.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/popup-panel.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/en-US/popup-panel.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/toolbox.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/en-US/toolbox.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/notification.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/zh-CN/notification.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/popup-panel.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/zh-CN/popup-panel.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/toolbox.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/locale/zh-CN/toolbox.properties -------------------------------------------------------------------------------- /chrome/skin/classic/shared/logo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/skin/classic/shared/logo_16x16.png -------------------------------------------------------------------------------- /chrome/skin/classic/shared/logo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/skin/classic/shared/logo_32x32.png -------------------------------------------------------------------------------- /chrome/skin/classic/shared/logo_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/skin/classic/shared/logo_64x64.png -------------------------------------------------------------------------------- /chrome/skin/classic/shared/resizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/skin/classic/shared/resizer.png -------------------------------------------------------------------------------- /chrome/skin/classic/shared/ua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/chrome/skin/classic/shared/ua.css -------------------------------------------------------------------------------- /data/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/config.js -------------------------------------------------------------------------------- /data/img/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/img/close.svg -------------------------------------------------------------------------------- /data/img/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/img/slider.png -------------------------------------------------------------------------------- /data/layer-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/layer-form.js -------------------------------------------------------------------------------- /data/layer-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/layer-list.js -------------------------------------------------------------------------------- /data/layer-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/layer-store.js -------------------------------------------------------------------------------- /data/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /data/lib/react/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/lib/react/react.js -------------------------------------------------------------------------------- /data/lib/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/lib/requirejs/require.js -------------------------------------------------------------------------------- /data/notification-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/notification-config.js -------------------------------------------------------------------------------- /data/notification-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/notification-content.js -------------------------------------------------------------------------------- /data/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/notification.html -------------------------------------------------------------------------------- /data/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/notification.js -------------------------------------------------------------------------------- /data/popup-frame-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/popup-frame-script.js -------------------------------------------------------------------------------- /data/popup-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/popup-panel.js -------------------------------------------------------------------------------- /data/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/popup.css -------------------------------------------------------------------------------- /data/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/popup.html -------------------------------------------------------------------------------- /data/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/data/popup.js -------------------------------------------------------------------------------- /docs/images/empty-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/docs/images/empty-panel.png -------------------------------------------------------------------------------- /docs/images/firebug-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/docs/images/firebug-integration.png -------------------------------------------------------------------------------- /docs/images/layer-form-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/docs/images/layer-form-page.png -------------------------------------------------------------------------------- /docs/images/layer-form-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/docs/images/layer-form-panel.png -------------------------------------------------------------------------------- /docs/images/popup-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/docs/images/popup-panel.png -------------------------------------------------------------------------------- /docs/images/start-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/docs/images/start-button.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/index.js -------------------------------------------------------------------------------- /lib/first-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/first-run.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/pixel-perfect-actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/pixel-perfect-actor.js -------------------------------------------------------------------------------- /lib/pixel-perfect-front.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/pixel-perfect-front.js -------------------------------------------------------------------------------- /lib/pixel-perfect-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/pixel-perfect-popup.js -------------------------------------------------------------------------------- /lib/pixel-perfect-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/pixel-perfect-store.js -------------------------------------------------------------------------------- /lib/pixel-perfect-toolbox-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/pixel-perfect-toolbox-overlay.js -------------------------------------------------------------------------------- /lib/start-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/start-button.js -------------------------------------------------------------------------------- /lib/style-editor-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/lib/style-editor-overlay.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/package.json -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/common.js -------------------------------------------------------------------------------- /test/frame-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/frame-script.js -------------------------------------------------------------------------------- /test/test-add-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-add-layer.js -------------------------------------------------------------------------------- /test/test-layer-invert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-layer-invert.js -------------------------------------------------------------------------------- /test/test-layer-lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-layer-lock.js -------------------------------------------------------------------------------- /test/test-layer-opacity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-layer-opacity.js -------------------------------------------------------------------------------- /test/test-layer-position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-layer-position.js -------------------------------------------------------------------------------- /test/test-layer-scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-layer-scale.js -------------------------------------------------------------------------------- /test/test-layer-visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-layer-visibility.js -------------------------------------------------------------------------------- /test/test-remove-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-remove-layer.js -------------------------------------------------------------------------------- /test/test-start-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-start-button.js -------------------------------------------------------------------------------- /test/test-toggle-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebug/pixel-perfect/HEAD/test/test-toggle-popup.js --------------------------------------------------------------------------------