PSU DARS Formatter

Adds hierarchy and readability to PSU's student DARS reports.

什麼是PSU DARS Formatter?

PSU DARS Formatter是由Thom Hines開發的Chrome擴展程式,該擴展的主要功能是“Adds hierarchy and readability to PSU's student DARS reports.”。

擴展截圖

screenshot

下載PSU DARS Formatter擴展crx文件

下載PSU DARS Formatter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The DARS Formatter will automatically reformat the output of any DARS report created through PSU's banweb services. 

The reformatted version has been designed to:
- add visual hierarchy and reduce visual clutter
- make it easier to scan through the information in the document
- quickly find which requirements have and have not been met
- allow users to minimize each section to allow them to focus on smaller amounts of content at any given time
- automatically style reports for better readability and to waste less ink when printing

This extension has only been tested with a small handful of DARS reports and so it may not work perfectly for everyone. Please contact the developer if you have any problems or questions.

DISCLAIMER:  The creator of this extension does not claim responsibility for any missing or altered information that may affect a student's graduation status. This extension only formats but does not alter any student information. To ensure that you have all of the necessary requirements, see your academic advisor.                    

擴展基本資訊

名稱 PSU DARS Formatter PSU DARS Formatter
ID goghpfmooeeomjgggljbpmjkpfopoohk
官方網址 https://chromewebstore.google.com/detail/psu-dars-formatter/goghpfmooeeomjgggljbpmjkpfopoohk
簡介 Adds hierarchy and readability to PSU's student DARS reports.
檔案大小 92.88 KB
安裝次數 43
目前版本 1.0.7
更新時間 2013-11-29
上架時間 2013-11-29
評分 4.86/5 共 7 次評分
開發者 Thom Hines
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PSU DARS Formatter",
    "description": "Adds hierarchy and readability to PSU's student DARS reports.",
    "version": "1.0.7",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/banweb.pdx.edu\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/banweb.pdx.edu\/*audit=*"
            ],
            "js": [
                "jquery.js",
                "dars.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dars.css"
    ],
    "page_action": {
        "default_title": "PSU DARS Formatter",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}