1

Google Chrome 拡張機能で動作するスクリプトを作成しました。私はすぐに説明しました: Dragonbound と呼ばれるオンライン ゲームがあります。スクリプトが行うことは、対戦相手に向けて撃たなければならない力を計算することです。わかりました、スクリプトを外部サーバーに収容しようとしましたが、明らかにロードされましたが実行されませんでした (「ロード中」)。コードに問題がある可能性があると思います (ビデオゲームの JavaScript を使用してスクリプトを作成しました)。元のコード、json、および外部スクリプトを呼び出す js を代理します。

Codeviewer の主な Javascript

マニフェスト.json

{
  "name": "DragonBound Aimbot 2.0",
  "version": "2.0.0",
  "manifest_version": 2,
  "description": "DragonBound Aimbot Hack - HTML5",
   "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
   "permissions": ["tabs", "notifications", "http://*.dropbox.com/u/91461506/*", "https://*.dropbox.com/u/91461506/*"],
   "background": { "page": "background.html", "persistent" : false },
"content_scripts": [
    {
      "matches": ["http://*.dragonbound.net/*","http://*.dropbox.com/u/91461506/*"],
      "js": ["jquery2.js","DragonBoundAimbot.js"],
      "run_at": "document_end"
    }
  ],
  "icons": {"16": "16.png", "48": "48.png", "128": "128.png"},
  "web_accessible_resources": [
    "ranks/*","48.png"
  ],
  "homepage_url" : "http://www.dropbox.com"
}

-コードは、外部スクリプトを呼び出します。

chrome.extension.sendRequest({type:"init"},function(response){

    if(response.ingame){
        chrome.extension.sendRequest({id:"loading",type:"notification2",text:["Loading","Loading scripts from dropbox.com..."]}, function(response) {});
        chrome.extension.sendRequest({type:"loadscript",url:'http://dl.dropbox.com/u/91461506/prueba2.js',cache:false}, function(response) {
            if(response.type == 1){
                eval(response.scriptcontent);

            }else if(response.type == 0){
                chrome.extension.sendRequest({id:"loading",type:"closenotification2"}, function(response) {})
                chrome.extension.sendRequest({id:"errorloading",time:0,type:"notification2",text:["Error","Failed to load the script, try again later"]}, function(response) {});
            }
        });
    }else{
        chrome.extension.sendRequest({type:"loadscript",url:'http://dl.dropbox.com/u/91461506/page.js',cache:false}, function(response) {
            if(response.type == 1){
                eval(response.scriptcontent);
                PAGEDBA.init();
            }else if(response.type == 0){

            }
        });
    }
});

Google Chrome の拡張機能と圧縮されていない拡張機能をアップロードしました:
Extension of Chrome .CRX

Estension 非圧縮 .ZIP

プレビュー プレビュー 2

ビデオゲームの Web ページのリンクはDragonBound.net です。

4

1 に答える 1

1

を使用eval()していeval()ますが、chrome-extensions では無効になっています。

http://developer.chrome.com/apps/sandboxingEval.html

于 2012-11-21T17:44:41.293 に答える