Salesforce Full Screen Code Editor

Adapts the code editor window to full screen for best programming experience.

Salesforce Full Screen Code Editor là gì?

Salesforce Full Screen Code Editor là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Adapts the code editor window to full screen for best programming experience.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Full Screen Code Editor

Tải xuống các tệp mở rộng Salesforce Full Screen Code Editor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Full Screen Code Editor Salesforce Full Screen Code Editor
ID ogelohfbpibohagmfaalipekmkmpbjai
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai
Mô tả Adapts the code editor window to full screen for best programming experience.
Kích Thước Tệp 55.83 KB
Số Lần Cài Đặt 302
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2015-06-09
Ngày Phát Hành 2015-06-09
Đánh Giá 3.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}