Better Source

This extension reformats the Seattle Schools website "The Source". It's unofficial so don't contact Seattle Schools if its broken.

什么是Better Source?

Better Source是由Sawyer and Eugene开发的Chrome扩展程序,该扩展的主要功能是“This extension reformats the Seattle Schools website "The Source". It's unofficial so don't contact Seattle Schools if its broken.”。

扩展截图

下载Better Source扩展crx文件

下载Better Source扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 Better Source Better Source
ID iddnkgfnmijjllldlaajnapfcpbealgm
官方URL https://chromewebstore.google.com/detail/better-source/iddnkgfnmijjllldlaajnapfcpbealgm
简介 This extension reformats the Seattle Schools website "The Source". It's unofficial so don't contact Seattle Schools if its broken.
文件大小 514 KB
安装次数 12
当前版本 1.8
更新时间 2019-02-12
上架时间 2019-02-12
评分 4.88/5 共8次评分
开发者 Sawyer and Eugene
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Source",
    "description": "This extension reformats the Seattle Schools website \"The Source\". It's unofficial so don't contact Seattle Schools if its broken.",
    "version": "1.8",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ps.seattleschools.org\/*"
            ],
            "js": [
                "reformat.js"
            ]
        }
    ]
}