FitWidth
Adds an additional zoom mode for the default image view.
Cos'è FitWidth?
FitWidth è un'estensione di Chrome sviluppata da shylux, e la sua funzione principale è "Adds an additional zoom mode for the default image view.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FitWidth
Scarica i file di estensione FitWidth in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
The Google Chrome image view has two different zoom modes. This extension adds a third one.
Fit height or width: Fits the image to the window size.
Original size: Displays the image in the original size. Ignores the window size.
-New- Fit width: Fits the image to the window width. If the image is too high a scollbar is used.
This new mode is perfect to view very thin and high images like Screencaps.
Source: https://github.com/shylux/FitWidth Informazioni di Base sull'Estensione
| Nome | |
| ID | pggbiaffhagpmifmogkfibinbbgacled |
| URL Ufficiale | https://chromewebstore.google.com/detail/fitwidth/pggbiaffhagpmifmogkfibinbbgacled |
| Descrizione | Adds an additional zoom mode for the default image view. |
| Dimensione del File | 37.4 KB |
| Conteggio Installazioni | 490 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2021-04-21 |
| Data di Pubblicazione | 2019-09-21 |
| Valutazione | 5.00/5 Totale 6 Valutazioni |
| Sviluppatore | shylux |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/shylux/FitWidth |
| URL della Pagina di Aiuto | https://github.com/shylux/FitWidth/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "FitWidth",
"version": "1.1",
"description": "Adds an additional zoom mode for the default image view.",
"icons": {
"128": "zoomplus.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"jquery-2.1.1.min.js",
"maximg.js"
],
"css": [
"style.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"manifest_version": 2
} | |