PSE Project/Milestone Expander Plugin
This extension will let you see the entire text of the (usually long) PSE Project and Milestone names
什麼是PSE Project/Milestone Expander Plugin?
PSE Project/Milestone Expander Plugin是由Remus Victuelles開發的Chrome擴展程式,該擴展的主要功能是“This extension will let you see the entire text of the (usually long) PSE Project and Milestone names”。
擴展截圖
下載PSE Project/Milestone Expander Plugin擴展crx文件
下載PSE Project/Milestone Expander Plugin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        Save time and avoid the frustration of selecting which project or milestones when submitting your timesheet. PSE Project/Milestone Expander Plugin allows you to set how wide you want the Project and Milestone fields and expands it automatically for you.                     擴展基本資訊
| 名稱 |   |  
| ID | ihkgbcajfjhemofegigoadbggakjkmji | 
| 官方網址 | https://chromewebstore.google.com/detail/pse-projectmilestone-expa/ihkgbcajfjhemofegigoadbggakjkmji | 
| 簡介 | This extension will let you see the entire text of the (usually long) PSE Project and Milestone names | 
| 檔案大小 | 11.55 KB | 
| 安裝次數 | 77 | 
| 目前版本 | 0.0.3.0 | 
| 更新時間 | 2017-01-12 | 
| 上架時間 | 2017-01-11 | 
| 開發者 | Remus Victuelles | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 支援的語言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PSE Project\/Milestone Expander Plugin",
    "description": "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names",
    "version": "0.0.3.0",
    "author": "Remus Victuelles ([email protected])",
    "permissions": [
        "tabs",
        "webNavigation",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/apex\/TCEntry*",
                "https:\/\/*.lightning.force.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Set Expander Settings"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}  |  |