Chrome应用:使用chrome.cookies

时间:2015-05-21 19:29:48

标签: google-chrome cookies google-chrome-extension google-chrome-app

我已经有使用function R = inPainting(I, mask) R = double(I); %// For precision n = 1; %// Change - column major indices unknown = find(~mask); %Find zeros in mask (area to be inpainted) %// Until we have searched all unknown pixels while numel(unknown) ~= 0 new_R = R; %// Change - take image at current iteration and %// create columns of pixel neighbourhoods padR = padarray(new_R, [n n], 'replicate'); cols = im2col(padR, [2*n+1 2*n+1], 'sliding'); %// Change - Access the right pixel neighbourhoods %// denoted by unknown nb = cols(:,unknown); %// Get total sum of each neighbourhood nbSum = sum(nb, 1); %// Get total number of non-zero elements per pixel neighbourhood nzs = sum(nb ~= 0, 1); %// Replace the right pixels in the image with the mean new_R(unknown(nzs ~= 0)) = nbSum(nzs ~= 0) ./ nzs(nzs ~= 0); %// Find new unknown pixels to look at unknown = unknown(nzs == 0); %// Update image for next iteration R = new_R; end %// Cast back to the right type R = cast(R, class(I)); API的Chrome扩展程序。 (见Chrome Cookies API

是否有相当于在Chrome应用中管理Cookie(获取,删除..)?

1 个答案:

答案 0 :(得分:0)

不,没有。

最多可以通过选择分区或明确清除分区来控制<webview>标记中Cookie的生命周期。