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 là gì?
PSE Project/Milestone Expander Plugin là một tiện ích mở rộng Chrome được phát triển bởi Remus Victuelles, và tính năng chính của nó là "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PSE Project/Milestone Expander Plugin
Tải xuống các tệp mở rộng PSE Project/Milestone Expander Plugin 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PSE Project/Milestone Expander Plugin |
ID | ihkgbcajfjhemofegigoadbggakjkmji |
URL Chính Thức | https://chromewebstore.google.com/detail/pse-projectmilestone-expa/ihkgbcajfjhemofegigoadbggakjkmji |
Mô tả | This extension will let you see the entire text of the (usually long) PSE Project and Milestone names |
Kích Thước Tệp | 11.55 KB |
Số Lần Cài Đặt | 77 |
Phiên Bản Hiện Tại | 0.0.3.0 |
Cập Nhật Lần Cuối | 2017-01-12 |
Ngày Phát Hành | 2017-01-11 |
Nhà Phát Triển | Remus Victuelles |
[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", "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" } } |