Show Chrome Version

Show browser version information in the toolbar.

Vad är Show Chrome Version?

Show Chrome Version är en Chrome-tillägg utvecklad av https://www.bayden.com, och dess huvudfunktion är "Show browser version information in the toolbar.".

Tilläggsskärmbilder

screenshot

Ladda ner Show Chrome Version-förlängningens CRX-fil

Ladda ner Show Chrome Version-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Show the browser version in the toolbar. This is useful for people who are testing many different browser versions at once, or those who just want to notice version changes. Source: https://github.com/ericlaw1979/ShowChromeVersion                    

Grundläggande Information om Tillägg

Namn Show Chrome Version Show Chrome Version
ID lcmpcdnpcjimgbdejflpblmlgjnakhmh
Officiell webbadress https://chromewebstore.google.com/detail/show-chrome-version/lcmpcdnpcjimgbdejflpblmlgjnakhmh
Beskrivning Show browser version information in the toolbar.
Filstorlek 12.59 KB
Antal Installationer 455
Aktuell Version 1.0.6.0
Senast Uppdaterad 2022-10-28
Publiceringsdatum 2019-08-08
Betyg 4.33/5 Totalt 6 Betyg
Utvecklare https://www.bayden.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/ericlaw1979/ShowChromeVersion
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Chrome Version",
    "short_name": "ShowChromeVersion",
    "description": "Show browser version information in the toolbar.",
    "content_security_policy": "default-src 'self'",
    "version": "1.0.6.0",
    "author": "Eric Lawrence (@ericlaw)",
    "minimum_chrome_version": "48",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "images\/icon38g.png"
        },
        "default_popup": "popup.html",
        "default_title": "Show version info"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": []
}