カテゴリー:
Google Chrome
閲覧数:527 配信日:2017-05-27 23:09
インストールした「Google Chrome拡張(エクステンション)」のソースコード
▼C:\Users\ユーザ名\AppData\Local\Google\Chrome\User Data\Default\Extensions\ebjidllpabafnaopkkkejbhaieciaink\0.0.0.64_0\
▼C:\Users\e1blue\AppData\Local\Google\Chrome\User Data\Default\Extensions\ebjidllpabafnaopkkkejbhaieciaink\0.0.0.64_0\js\eventpage.js
//ブラウザアクションを押した時のイベント
chrome.browserAction.onClicked.addListener(function(callback){
//削除
remove_browsingData();
//中略
//削除
function remove_browsingData(){
chrome.browsingData.remove({
originTypes: {unprotectedWeb: true}},
{
appcache: get_localStorage("appcache"),
cache: get_localStorage("cache"),
cookies: false,
downloads: get_localStorage("downloads"),
fileSystems: get_localStorage("fileSystems"),
formData: get_localStorage("formData"),
history: get_localStorage("history"),
indexedDB: get_localStorage("indexedDB"),
localStorage: get_localStorage("localStorage"),
pluginData: get_localStorage("pluginData"),
passwords: get_localStorage("passwords"),
webSQL: get_localStorage("webSQL")
});
▼js\storage.js
function get_localStorage(key) {
・browsingData.remove()
・chrome.browsingData
・ChromeでCSSが反映されない?キャッシュ消去で対処