Design Overlay
This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.
Was ist Design Overlay?
Design Overlay ist eine Chrome-Erweiterung, die von nickdeakin83 entwickelt wurde, und ihr Hauptmerkmal ist "This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.".
Erweiterungsscreenshots
Design Overlay-Erweiterungs-CRX-Datei herunterladen
Laden Sie Design Overlay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Developing a website by eyeballing the page and design? Tired of screenshotting your page and overlaying it in photoshop to check its pixel perfect? Pffft! Just add the png of the site to this extension, and switch it on! The design will be overlayed on your page with half opacity. Now you can be pixel perfect, and your designers wont have to slap you any longer!
Grundlegende Informationen zur Erweiterung
Name | |
ID | mdkocgkfcdilceogdfekcacmpjpopdma |
Offizielle URL | https://chrome.google.com/webstore/detail/design-overlay/mdkocgkfcdilceogdfekcacmpjpopdma |
Beschreibung | This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel. |
Dateigröße | 17.41 KB |
Installationsanzahl | 36 |
Aktuelle Version | 0.0.0.3 |
Letztes Update | 2021-02-04 |
Veröffentlichungsdatum | 2021-01-28 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | nickdeakin83 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Design Overlay", "description": "This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.", "version": "0.0.0.3", "icons": { "16": "\/images\/image_16.png", "32": "\/images\/image_32.png", "48": "\/images\/image_64.png", "128": "\/images\/image_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Right click and select an image in options!" }, "options_page": "options.html", "permissions": [ "activeTab", "storage" ] } |