向Chrome浏览器控制台添加方法

时间:2013-12-27 05:40:29

标签: javascript google-chrome

我找到了一种可以在Chrome浏览器控制台中创建文件的方法。我想将此函数添加到浏览器默认方法中,以便下次我想使用该函数时,我不需要粘贴该函数并再次使用它。我每天多次使用它。喜欢60-100倍。

有没有办法将这个功能添加到chrome?每次打开浏览器时我都想要这个加载。

(function(console){

    console.save = function(data, filename){

        if(!data) {
            console.error('Console.save: No data')
            return;
        }

        if(!filename) filename = 'console.json'

        if(typeof data === "object"){
            data = JSON.stringify(data, undefined, 4)
        }

        var blob = new Blob([data], {type: 'text/json'}),
            e    = document.createEvent('MouseEvents'),
            a    = document.createElement('a')

        a.download = filename
        a.href = window.URL.createObjectURL(blob)
        a.dataset.downloadurl =  ['text/json', a.download, a.href].join(':')
        e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null)
        a.dispatchEvent(e)
    }
})(console)

1 个答案:

答案 0 :(得分:0)

正如Barmar所说,bookmarlet帮助了我。

我正在添加完整的代码以供参考。

javascript:void((function(d){var e=d.createElement('script');e.innerHTML="
(function(console){

    console.save = function(data, filename){

        if(!data) {
            console.error('Console.save: No data');
            return 0;
        }

        if(!filename) 
        filename = 'console.json';

        if(typeof data === \"object\"){
            data = JSON.stringify(data, undefined, 4);
        }

        var blob = new Blob([data], {type: 'text/json'}),
            e    = document.createEvent('MouseEvents'),
            a    = document.createElement('a');

        a.download = filename;
        a.href = window.URL.createObjectURL(blob);
        a.dataset.downloadurl =  ['text/json', a.download, a.href].join(':');
        e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
        a.dispatchEvent(e);
    }
})(console)
";d.body.appendChild(e)})(document));