Font Size Changer for AppsScript
This extension change the font size of the google apps script editor.
Τι είναι το Font Size Changer for AppsScript;
Το Font Size Changer for AppsScript είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.y-shinno.com, και η κύρια λειτουργία του είναι "This extension change the font size of the google apps script editor.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Font Size Changer for AppsScript
Λήψη αρχείων επέκτασης Font Size Changer for AppsScript σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Font Size Changer for AppsScript |
ID | lkjeamadaggbfkjiiemgdkamlecpkhpo |
Επίσημο URL | https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo |
Περιγραφή | This extension change the font size of the google apps script editor. |
Μέγεθος Αρχείου | 462 KB |
Αριθμός Εγκαταστάσεων | 1,120 |
Τρέχουσα Έκδοση | 1.1.0 |
Τελευταία Ενημέρωση | 2018-07-06 |
Ημερομηνία Δημοσίευσης | 2018-07-06 |
Αξιολόγηση | 4.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | https://www.y-shinno.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.y-shinno.com/gas-font-size-changer/ |
Υποστηριζόμενες Γλώσσες | 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'" } |