ShutUpCecil

Stops Cecil annoying popups and lets you download lectures

什麼是ShutUpCecil?

ShutUpCecil是由ArrowTheRodgers開發的Chrome擴展程式,該擴展的主要功能是“Stops Cecil annoying popups and lets you download lectures”。

擴展截圖

screenshot

下載ShutUpCecil擴展crx文件

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

擴展使用說明

                        Tired of those pesky Cecil alerts? Need to download your lectures with ease and grace? This is the extension for you!

** FEATURES **
- Stops Cecil from trying to log you out with alerts and what not. Bad Cecil! Let me procrastinate in peace!
- When viewing a lecture, a wee button will appear in your url bar, clicking it will download the last viewed lecture. You can not catch up on your lectures anywhere, even without an internet connection!

Issues? Bugs? Suggestions? Leave a comment, or flick me an email. Or track me down in person, if you know my secret identity.

Share with all your friends and neighbours!

**VERSION HISTORY**
0.3.7: No need for global permissions. These updates are lame when will something fun happen!?
0.3.6: Better gulp. Noone needs to care. I care though.
0.3.2: Better script injection for alertBlocker, better alertBlock function                    

擴展基本資訊

名稱 ShutUpCecil ShutUpCecil
ID bgokogojhamakpbfnhbindkipkmnpchd
官方網址 https://chrome.google.com/webstore/detail/shutupcecil/bgokogojhamakpbfnhbindkipkmnpchd
簡介 Stops Cecil annoying popups and lets you download lectures
檔案大小 30.95 KB
安裝次數 35
目前版本 0.3.7
更新時間 2015-09-21
上架時間 2015-09-21
評分 5.00/5 共 3 次評分
開發者 ArrowTheRodgers
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShutUpCecil",
    "version": "0.3.7",
    "description": "Stops Cecil annoying popups and lets you download lectures",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "downloads",
        "tabs",
        "https:\/\/mediastore.auckland.ac.nz\/",
        "https:\/\/cecil.auckland.ac.nz\/"
    ],
    "background": {
        "scripts": [
            "download.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/cecil.auckland.ac.nz\/Cecil.aspx*"
            ],
            "js": [
                "alerts.js"
            ]
        }
    ],
    "icons": {
        "32": "icons\/cecil32.png",
        "64": "icons\/cecil64.png",
        "128": "icons\/cecil128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icons\/cecil19.png",
            "38": "icons\/cecil38.png"
        },
        "default_title": "Click to download:"
    }
}