Cache Bomb

Cache-busts the current page.

什么是Cache Bomb?

Cache Bomb是由Nicholas Scheurich开发的Chrome扩展程序,该扩展的主要功能是“Cache-busts the current page.”。

下载Cache Bomb扩展crx文件

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

扩展使用说明

                        Appends the current datetime to URL as a valueless request parameter. Currently overwrites existing URL params.

Request features and report bugs at https://github.com/ngscheurich/cache_bomb.

Logo icons are from the excellent Nucleo set (https://nucleoapp.com/).                    

扩展基本信息

名称 Cache Bomb Cache Bomb
ID balfpnjonknhioomnkiebocaalohjkpk
官方URL https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk
简介 Cache-busts the current page.
文件大小 9.42 KB
安装次数 35
当前版本 1.1
更新时间 2016-07-19
上架时间 2016-07-19
开发者 Nicholas Scheurich
付费类型 free
扩展官网 https://github.com/ngscheurich/cache_bomb
帮助页面URL https://github.com/ngscheurich/cache_bomb/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cache Bomb",
    "version": "1.1",
    "description": "Cache-busts the current page.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Cache-bust the current page."
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}