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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Remus Victuelles และคุณลักษณะหลักของมันคือ "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PSE Project/Milestone Expander Plugin
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | PSE Project/Milestone Expander Plugin |
ID | ihkgbcajfjhemofegigoadbggakjkmji |
URL อย่างเป็นทางการ | 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" } } |