4

URLバーの横にあるアイコンをワンクリックですべての閲覧履歴を削除するグーグルクローム拡張機能を作成しようとしています。これはグーグルクロームの最初の拡張機能です。Firefox用に他の拡張機能を作成しました。ガイダンスが必要です。私が思うアイデアは私の目標に非常に近いか、少なくとも正しい道にあります。私の現在の問題は、コードが欠落していることを知っているjavascriptドキュメントです。

Javascript [TEST.js]

function TESTh() {
  chrome.history.deleteAll()
}
chrome.browserAction.onClicked.addListener(TESTh);
TESTh();

マニフェスト[manifest.json]

{
  "name": "TITLE TEST",
  "version": "1.0",
  "manifest_version": 2,
  "description": "DESCRIPTION TEST",
  "background": {
    "scripts": ["TEST.js"]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "history"
  ]
}

次のリンクは私が読んでいるチュートリアルです

http://developer.chrome.com/extensions/getstarted.html
http://developer.chrome.com/extensions/history.html
http://developer.chrome.com/extensions/browserAction.html
http://developer.chrome.com/extensions/samples.html
https://www.youtube.com/user/GoogleDevelopers

前もって感謝します

4

1 に答える 1

4

Browsing Data APIの簡単なデモンストレーションのサンプルを作成しました。これは、ここから選択するのに役立ちます。削除には時間がかかる場合がありますので"All data is Deleted..."、内線のコンソールで確認のためのメッセージを待つ必要があります。

前:

ここに画像の説明を入力してください

後:

ここに画像の説明を入力してください

マニフェスト.json

{
  "name" : "BrowsingData Demo",
  "version" : "1",
  "description" : "Trivial Demonstration of Browsing Data",
  "permissions": [
    "browsingData"
  ],
  "browser_action": {
     "default_icon": "icon.png",
     "default_popup": "popup.html"
  },
  "manifest_version": 2
}

popup.html

<html>
<head>
<script src="popup.js"></script>
</head>
<body>
</body>
</html>

popup.js

   function browsingdata(){
    chrome.browsingData.remove({
      "originTypes": {
        "protectedWeb": true, // Set to true or true as per your requirement
        "unprotectedWeb":true,// Set to true or true as per your requirement
        "extension":true    // Set to true or true as per your requirement
      }
    }, {
      "appcache": true, // Set to true or true as per your requirement
      "cache": true, // Set to true or true as per your requirement
      "cookies": true, // Set to true or true as per your requirement
      "downloads": true, // Set to true or true as per your requirement
      "fileSystems": true, // Set to true or true as per your requirement
      "formData": true, // Set to true or true as per your requirement
      "history": true, // Set to true or true as per your requirement
      "indexedDB": true, // Set to true or true as per your requirement
      "localStorage": true, // Set to true or true as per your requirement
      "pluginData": true, // Set to true or true as per your requirement
      "passwords": true, // Set to true or true as per your requirement
      "webSQL": true // Set to true or true as per your requirement
    }, function (){
        console.log("All data is Deleted...");
    });
}
window.onload=browsingdata;

詳細については、ブラウジングデータAPIを参照して、すべてのメソッドなどのアイデアを入手してください。

于 2012-11-26T02:06:25.843 に答える