Hoverify

All-in-one browser extension to improve your web dev experience.

Wat is Hoverify?

Hoverify is een Chrome-extensie ontwikkeld door Hoverify, en de belangrijkste functie is "All-in-one browser extension to improve your web dev experience.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Hoverify

Download Hoverify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Tools to make your web dev life a bit easy.

⭐ Inspector
1) Inspect CSS and HTML just by hovering over the element.
2) Live edit CSS and HTML. 
3) Export code to Codepen. 
4) Inspect media queries and animations. 
5) Edit the content of any HTML element. 
6) Traverse DOM elements with arrow keys. 
7) Visualize the margin and padding of the element.
8) Know fonts per tag. 
9) Finds font on Google Fonts.
10) Extract all the colors used on the page. 
11) Toggle visibility of any element or remove an element from the page and persist changes.  
12) Easily search elements by tag, class, or id. 

⭐ Color Eyedropper
1) Pick colors from anywhere on the page, even images and IFrames.
2) Get hex and RGB values.
3) Save colors. 

⭐ Assets
1) Extract images, SVGs, videos, and Lottie animations from the page.
2) Download all the assets at once in ZIP.

⭐ Responsive 
1) Any click, scroll, or navigation you perform on one device will be replicated to all devices in real-time.
2) Add new custom device profiles as you like and arrange devices to fit your style.
3) Hot-Reloading Support.

⭐ Debug
1) Clear cache, cookies, and local storage of specific origin or whole browser.
2) Get meta tags from the page and copy them with one click.
3) Check the HTTP status of all the links present on the page. 
4) Check compatibility with HTML Semantic Elements. 
5) Check the whole page for spelling mistakes (Only supports English).

⭐ Capture
1) Take a screenshot of the whole page or just a visible area.
2) Capture the selected area on the page.
3) Screenshot the visible area of every tab with just one click.
4) Save the screenshot in PDF, JPG, or PNG.

⭐ Built with
1) Know what technologies the page uses with one click.
2) Get the hosting, DNS, and SSL information of the page.

If you haven't bought this extension, you can buy it here - https://tryhoverify.com.

💡 Bug Report and Suggestions
To report a bug or for a feature request, you can send an e-mail to [email protected] or DM on Twitter @hov3rify                    

Basisinformatie over de Extensie

Naam Hoverify Hoverify
ID bbpokcagpggnekcmamgdieebhpkjmljm
Officiële URL https://chromewebstore.google.com/detail/hoverify/bbpokcagpggnekcmamgdieebhpkjmljm
Beschrijving All-in-one browser extension to improve your web dev experience.
Bestandsgrootte 2.4 MB
Aantal Installaties 20,000
Huidige Versie 3.0.83
Laatst Bijgewerkt 2023-10-11
Publicatiedatum 2020-05-04
Beoordeling 4.15/5 Totaal 117 Beoordelingen
Ontwikkelaar Hoverify
E-mail [email protected]
Betalingswijze in_app
Extensiewebsite https://tryhoverify.com
Help Pagina-URL https://tryhoverify.com#faq
URL van de Privacybeleid Pagina https://www.tryhoverify.com/privacy
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hoverify",
    "description": "All-in-one browser extension to improve your web dev experience.",
    "homepage_url": "https:\/\/tryhoverify.com",
    "version": "3.0.83",
    "author": "Himanshu Mishra",
    "default_locale": "en",
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "96": "assets\/icon96.png",
        "128": "assets\/icon128.png"
    },
    "web_accessible_resources": [
        "content_scripts\/*",
        "css\/*",
        "assets\/*",
        "vendors\/*"
    ],
    "permissions": [
        "",
        "activeTab",
        "tabs",
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "webRequest",
        "webRequestBlocking",
        "webNavigation",
        "browsingData"
    ],
    "browser_action": {
        "default_icon": "assets\/icon32.png",
        "default_popup": "home.html",
        "default_title": "Hoverify"
    },
    "background": {
        "scripts": [
            "js\/bg.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "js\/cs.js"
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "toggle-inspector": {
            "suggested_key": {
                "default": "Alt+I",
                "mac": "Alt+I"
            },
            "description": "Toggle Inspector."
        },
        "toggle-ce": {
            "suggested_key": {
                "default": "Alt+C",
                "mac": "Alt+C"
            },
            "description": "Toggle Color Eyedropper."
        },
        "open-responsive": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Open page in Responsive mode."
        },
        "capture-full-page": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Capture full page."
        },
        "capture-visible-part": {
            "description": "Capture visible part."
        },
        "capture-selected-area": {
            "description": "Capture selected area."
        },
        "capture-all-tabs": {
            "description": "Capture all the tabs."
        }
    },
    "minimum_chrome_version": "74",
    "incognito": "split"
}