HostFat
Staff
Legendary
Offline
Activity: 4270
Merit: 1209
I support freedom of choice
|
|
June 21, 2012, 10:49:16 PM |
|
Is html5 only supported by Chrome? I don't think so ...
|
|
|
|
mcorlett
Donator
Sr. Member
Offline
Activity: 308
Merit: 250
|
|
June 21, 2012, 10:51:20 PM |
|
Is html5 only supported by Chrome? I don't think so ...
"The sandbox attribute is currently supported in Chrome and Safari." - http://www.w3schools.com/html5/att_iframe_sandbox.aspPlease do some research before posting.
|
|
|
|
HostFat
Staff
Legendary
Offline
Activity: 4270
Merit: 1209
I support freedom of choice
|
|
June 21, 2012, 10:55:44 PM |
|
It seems that you are taking it too personaly I leave!
|
|
|
|
mcorlett
Donator
Sr. Member
Offline
Activity: 308
Merit: 250
|
|
June 21, 2012, 10:58:02 PM |
|
I leave! I would expect nothing less!
|
|
|
|
nimda
|
|
June 21, 2012, 11:37:37 PM |
|
Now ads are being be displayed in the separate sandbox, where parent's window forced redirect is not possible to perform.
So, you're not doing anything to help Firefox, Opera, or Internet Explorer users? From a webdev standpoint, it's very tempting to only support Chrome, but it's most profitable to spend countless frustrated hours trying to get IE up to 2005 levels. From an ideological standpoint, I'd only use HTML5 and CSS3, then wait for everyone to support the goddamn international standards. From an end-user standpoint, I use Chrome (over FF) because I'd rather have more HTML5 support and forego random stuff like APNG. I'd switch to maxathon if it was faster and I liked its UI better Sources: http://html5test.com/results/desktop.htmlhttp://peacekeeper.futuremark.com/
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
June 22, 2012, 12:52:59 AM Last edit: June 22, 2012, 01:03:37 AM by giantdragon |
|
Yes, it is true. But it is only one way how to automatically prevent malicious ads. While this feature is not supported in all browsers, I will continue to manually monitor ads for presence of the forced redirect scripts.
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
June 22, 2012, 12:55:37 AM |
|
Click stats have been updated. See how much you have earned on each click. View your earnings chart for the last month.
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
June 26, 2012, 03:43:03 PM |
|
Upload web pages containing links which you want to shorten. You can upload a single file with HTML code (.html, .htm, .php etc) or bundle many files in the archive (only .zip format supported). Archive can contain folders, as well as binary files (e.g. images). Only "href" attribute will be affected. We strongly respect your privacy and will never disclose any files that you have uploaded. These files will be securely deleted not later than 24 hours since processing. This feature is in the beta stage, if you have found a bug, please tell me. https://coinurl.com/profile-batch.php
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
June 27, 2012, 02:20:25 AM |
|
Batch shortener now supports automatic relative URL transformation to absolute, using specified base domain. For example, if you have links like href="index.php" and website's domain is "sample-site.com", you can automatically convert links to " http://sample-site.com/index.php".
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
June 29, 2012, 02:00:01 PM |
|
Process your tweet, instant message or forum post and monetize all links it has. Message's structure and text will be kept original. BBCode (used in most forums like phpBB and vBulletin) is also supported. https://coinurl.com/profile-message.php
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
June 30, 2012, 03:10:05 PM |
|
Our message parser now able to detect links even without "http://" protocol prefix.
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
July 03, 2012, 06:49:25 PM |
|
Improvements made for the advertisers:
* Significantly improved fraudulent click detection method. * Preview of the ads available. * You can specify separate URL of your website and ad page's URL to be shown in the interstitial ad frame. Also you can upload an ad to our server.
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
July 04, 2012, 06:48:56 PM |
|
Advertisers, make your campaign more effective by forcing link visitors to view your ads for given period of time! Publishers, boost your earnings by allowing longer ad display time!
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
July 05, 2012, 02:29:04 PM |
|
Google Chrome extension now available from the official Chome Web Store! If you have previous version installed, please uninstall it first, than perform an update. You may be asked to enter a personal UUID again. Update now!
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
July 07, 2012, 01:45:52 PM Last edit: July 07, 2012, 02:35:22 PM by giantdragon |
|
Want to save your time? Just place JavaScript code on each website's page and all links it contains will start to generate income for you! Below is an example. Version with personal ID and more detailed description is here: https://coinurl.com/profile-dynamic.php. <script type="text/javascript"> $(function() { var include = Array(); //Leave empty to convert all links on the page or specify keywords //which URL must contain to be processed var exclude = Array(); //Specify keywords which URL must not contain to be processed var id = "a274a7610f6856432fb1e9a707de2645"; //Change to personal from https://coinurl.com/profile-dynamic.php var redirect = "http://coinurl.com/redirect.php?id=" + id + "&url="; var links = $("a[href^='http']"); for(var i = 0; i < links.length; i++) { var url = $(links[i]).attr("href"); var deny = false; for(var j = 0; j < exclude.length; j++) { if(url.indexOf(exclude[j]) != -1) { deny = true; break; } } if(deny) { continue; } if(include.length > 0) { var allow = false; for(var j = 0; j < include.length; j++) { if(url.indexOf(include[j]) != -1) { allow = true; break; } } if(!allow) { continue; } } $(links[i]).attr("href", redirect + encodeURIComponent(url)); } }); </script>
|
|
|
|
ingrownpocket
Legendary
Offline
Activity: 952
Merit: 1000
|
|
July 07, 2012, 02:26:18 PM |
|
You're working really hard on this project. I wish you the best of lucks. It's a great service PS: You may want to change the link on your previous post. (localhost)
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
July 07, 2012, 02:34:37 PM |
|
You're working really hard on this project. I wish you the best of lucks. It's a great service Thank you! PS: You may want to change the link on your previous post. (localhost)
Oh, I have copied this snipped from my local server. On the page https://coinurl.com/profile-dynamic.php redirect URL is correct.
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
July 10, 2012, 04:57:11 PM |
|
Many new tools now available for the advertisers! The ad selection algorithm completely rewriten from scratch!You can choose devices on which you want to show your ad (desktop and laptop computers, smartphones, tablets). Frequency capping lets you to set maximum number of times an ad can be shown to the same person per 24 hours. Also you can specify keywords to target your ad to the people, who visit relevant websites. Both referrer and destination URL will be matched. Keywords now being matched in the case-insensitive full text search mode, e.g. it is enough to specify "youtube" to target all YouTube links. Keywords also can be used to exclude audience who visit websites, that are not relevant for your ad (e.g. porn, pirated downloads). Meanwhile, Firefox extension was too updated! P.S. As I know, currently CoinURL is only one Bitcoin advertising platform that offers contextual ads.
|
|
|
|
HostFat
Staff
Legendary
Offline
Activity: 4270
Merit: 1209
I support freedom of choice
|
|
July 10, 2012, 05:27:46 PM |
|
You have some great skills Will you ever make a complete advertise system as anonymous ads?
|
|
|
|
giantdragon (OP)
Legendary
Offline
Activity: 1582
Merit: 1002
|
|
July 10, 2012, 06:01:41 PM |
|
Will you ever make a complete advertise system as anonymous ads?
You are absolutely right! I have plans to turn CoinURL into leading Bitcoin advertising platform!
|
|
|
|
|