Bitcoin Forum

Other => Off-topic => Topic started by: MoonOfLife on June 16, 2015, 06:57:54 PM



Title: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: MoonOfLife on June 16, 2015, 06:57:54 PM
Use google Chrome to use this extension


download here : https://drive.google.com/file/d/0ByPBd7AtiUwzMmEwVE4ySkplQkE/view?usp=sharing
original : https://chrome.google.com/webstore/detail/bitcoin-peek%2B/lejbmdncefpdeonhafpepgibimbngdkg

im editing some file from google chrome store

Code:
First Activity:
Last Activity:

Total Trnsx.:
Total Received:
Final Balance:


Tip Me : 1JxXDzcnWk1sMR1JiG2agZeELEa6g95pXd  

How to instal :

1. use google chrome
2. download .crx file
3. go to here chrome://extensions
4. drag .crx file to chrome://extensions

Tip Me : 1JxXDzcnWk1sMR1JiG2agZeELEa6g95pXd


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: subSTRATA on June 16, 2015, 08:01:43 PM
I wouldnt trust the extension if its just a download on drive, instead of the chrome webstore. post the source publicly so people can inspect it.


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: MoonOfLife on June 16, 2015, 08:52:21 PM
I wouldnt trust the extension if its just a download on drive, instead of the chrome webstore. post the source publicly so people can inspect it.

source : download.crx file and change .crx to .zip you can see all the files


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: subSTRATA on June 16, 2015, 09:04:26 PM
I wouldnt trust the extension if its just a download on drive, instead of the chrome webstore. post the source publicly so people can inspect it.

source : download.crx file and change .crx to .zip you can see all the files

too much trouble for something i most likely wont use, and I dont know too much about chrome extension programming; someone else more qualified should inspect the source.


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: Mitchell on June 16, 2015, 09:18:03 PM
I just checked the source code and it seems clean (I did not check the packaged qTip and jQuery libraries). I did found something funny:
Code:
    this.update_btc = function() {
        url = 'https://data.mtgox.com/api/2/BTCUSD/money/ticker';
        $jq.getJSON(url, function(data) {
            api.btc_in_usd = data.data.last.value;
        });
    };
MtGox API? Seriously? Must have been an old script you edited. Anyway, I don't recommend installing this for the following reasons:
1. Installing a .crx through "chrome://extensions" will be disabled soon (or it already is).
2. I can't find the original script on the Chrome Webstore.
3. There are more than enough good ones available on the Chrome Webstore.


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: subSTRATA on June 16, 2015, 09:22:48 PM
I just checked the source code and it seems clean (I did not check the packaged qTip and jQuery libraries). I did found something funny:
Code:
    this.update_btc = function() {
        url = 'https://data.mtgox.com/api/2/BTCUSD/money/ticker';
        $jq.getJSON(url, function(data) {
            api.btc_in_usd = data.data.last.value;
        });
    };
MtGox API? Seriously? Must have been an old script you edited. Anyway, I don't recommend installing this as loading .crx through chromeL://extensions will be disabled for good soon, I can't find the original script on the Chrome Webstore and there are more than enough good ones available there.

well there you go, thanks mitchell for finding that.

trying to get tips on an ancient script you plagarized.... at least it didnt have malicious code.


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: Mitchell on June 16, 2015, 09:23:40 PM
well there you go, thanks mitchell for finding that.

trying to get tips on an ancient script you plagarized.... at least it didnt have malicious code.
Well, he said in the OP that he edited the script to add a few things, so he was at least honest about it.


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: brunoshady on June 16, 2015, 09:23:49 PM
will there be a firefox extension available anywhere in the future? and how will this work? do you just over above an address and see the balance?


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: MoonOfLife on June 16, 2015, 09:31:30 PM
I just checked the source code and it seems clean (I did not check the packaged qTip and jQuery libraries). I did found something funny:
Code:
    this.update_btc = function() {
        url = 'https://data.mtgox.com/api/2/BTCUSD/money/ticker';
        $jq.getJSON(url, function(data) {
            api.btc_in_usd = data.data.last.value;
        });
    };
MtGox API? Seriously? Must have been an old script you edited. Anyway, I don't recommend installing this for the following reasons:
1. Installing a .crx through "chrome://extensions" will be disabled soon (or it already is).
2. I can't find the original script on the Chrome Webstore.
3. There are more than enough good ones available on the Chrome Webstore.

you are right ..this is old script .. xD

i found it at google webstore .. but it still working
https://chrome.google.com/webstore/detail/bitcoin-peek%2B/lejbmdncefpdeonhafpepgibimbngdkg


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: subSTRATA on June 16, 2015, 09:32:04 PM
Well, he said in the OP that he edited the script to add a few things, so he was at least honest about it.

true, but he could at least have been through in editing it, this is just shoddy, cursory "work" that probably took all of 15 minutes.

will there be a firefox extension available anywhere in the future? and how will this work? do you just over above an address and see the balance?

no need to bother with this, its been shoddily edited from an already outdated extension.

I found this which might be close though: https://addons.mozilla.org/en-us/firefox/addon/bitcoin-ticker-plus/


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: MrDjAK on June 17, 2015, 04:21:25 PM
Good extension


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: 888coin on June 17, 2015, 04:57:37 PM
I just checked the source code and it seems clean (I did not check the packaged qTip and jQuery libraries). I did found something funny:
Code:
    this.update_btc = function() {
        url = 'https://data.mtgox.com/api/2/BTCUSD/money/ticker';
        $jq.getJSON(url, function(data) {
            api.btc_in_usd = data.data.last.value;
        });
    };
MtGox API? Seriously? Must have been an old script you edited. Anyway, I don't recommend installing this for the following reasons:
1. Installing a .crx through "chrome://extensions" will be disabled soon (or it already is).
2. I can't find the original script on the Chrome Webstore.
3. There are more than enough good ones available on the Chrome Webstore.


Thanks and appreciate your findings.  ;)


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: brunoshady on June 17, 2015, 11:56:40 PM
Well, he said in the OP that he edited the script to add a few things, so he was at least honest about it.

true, but he could at least have been through in editing it, this is just shoddy, cursory "work" that probably took all of 15 minutes.

will there be a firefox extension available anywhere in the future? and how will this work? do you just over above an address and see the balance?

no need to bother with this, its been shoddily edited from an already outdated extension.

I found this which might be close though: https://addons.mozilla.org/en-us/firefox/addon/bitcoin-ticker-plus/
doesnt help, i want a plugin that activates everytime i hover my mousse over a bitcoin address, and then it tells me the balance


Title: Re: Easy Check Address Bitcoin | Chrome Extension | FREE |
Post by: ellave on June 18, 2015, 09:06:15 PM
Thanks for this 8)