Font Size Changer for AppsScript
This extension change the font size of the google apps script editor.
Vad är Font Size Changer for AppsScript?
Font Size Changer for AppsScript är en Chrome-tillägg utvecklad av https://www.y-shinno.com, och dess huvudfunktion är "This extension change the font size of the google apps script editor.".
Tilläggsskärmbilder
Ladda ner Font Size Changer for AppsScript-förlängningens CRX-fil
Ladda ner Font Size Changer for AppsScript-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
This extension allows developers to change the font size of AppsScript Editor. This makes it possible to comfortably write codes even with laptop computers with high resolution and small screens. For now, this extension provides font sizes from 9px to 32px. In the future, if there are requests from customers, it may increase. Updated : ▼Ver.1.1.0 -Fix the margin-left of the script editor -Fix so that font size change will be applied when opening new file
Grundläggande Information om Tillägg
Namn | Font Size Changer for AppsScript |
ID | lkjeamadaggbfkjiiemgdkamlecpkhpo |
Officiell webbadress | https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo |
Beskrivning | This extension change the font size of the google apps script editor. |
Filstorlek | 462 KB |
Antal Installationer | 1,120 |
Aktuell Version | 1.1.0 |
Senast Uppdaterad | 2018-07-06 |
Publiceringsdatum | 2018-07-06 |
Betyg | 4.67/5 Totalt 3 Betyg |
Utvecklare | https://www.y-shinno.com |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | https://www.y-shinno.com/gas-font-size-changer/ |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Font Size Changer for AppsScript", "version": "1.1.0", "manifest_version": 2, "description": "This extension change the font size of the google apps script editor.", "content_scripts": [ { "matches": [ "https:\/\/script.google.com\/*" ], "js": [ "\/node_modules\/jquery\/dist\/jquery.min.js", "script.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ajax.googleapis.com\/ ; object-src 'self'" } |