Salesforce Full Screen Code Editor
Adapts the code editor window to full screen for best programming experience.
Salesforce Full Screen Code Editorとは何ですか?
Salesforce Full Screen Code Editorは[email protected]によって開発されたChromeの拡張機能で、その主な機能は「Adapts the code editor window to full screen for best programming experience.」です。
拡張機能のスクリーンショット
Salesforce Full Screen Code Editor拡張機能のCRXファイルをダウンロード
Salesforce Full Screen Code Editor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Version 1.4 Features: - Editor height adapts to screen size - Name on page title - Support: Apex Classes, Triggers, Components, Visualforce Pages, Email templates - Awesomeness also included! Press the icon at the url bar to start/exit the fullscreen mode. Awesome!
拡張機能の基本情報
名前 | Salesforce Full Screen Code Editor |
ID | ogelohfbpibohagmfaalipekmkmpbjai |
公式URL | https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai |
説明 | Adapts the code editor window to full screen for best programming experience. |
ファイルサイズ | 55.83 KB |
インストール数 | 302 |
現在のバージョン | 1.4 |
最終更新日 | 2015-06-09 |
公開日 | 2015-06-09 |
評価 | 3.40/5 合計 5 レビュー |
開発者 | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Full Screen Code Editor", "version": "1.4", "manifest_version": 2, "description": "Adapts the code editor window to full screen for best programming experience.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": "icon.png" }, "incognito": "split", "content_scripts": [ { "matches": [ "*:\/\/*.salesforce.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "declarativeContent" ] } |