3PO#fail
What happens to your site when 3rd party sites are down
Τι είναι το 3PO#fail;
Το 3PO#fail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.phpied.com, και η κύρια λειτουργία του είναι "What happens to your site when 3rd party sites are down".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης 3PO#fail
Λήψη αρχείων επέκτασης 3PO#fail σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
See how your page loads when 3rd party JavaScript fails to load. Example 3rd party scripts are those you include for social buttons like Facebook Like, Twitter, Google+ etc Including these external JavaScripts in a blocking manner is a SPOF (Single Point Of Failure) for your site. This means an outage. You should always load these asynchronously. Sites do go down. Even big ones. Or they fail to load for other reasons (e.g. corporate firewall blocking). You don't want your site to go down when a third party goes down. // You want: your outage = your outage // as opposed to you outage += Google outage + FB outage + Twitter outage + LinkedIn + ..... This extension helps you visualize the negative effects by redirecting recognized third party JavaScripts to a blackhole (http://blackhole.webpagetest.org). The list of recognizes script include: *://ajax.googleapis.com/* *://apis.google.com/* *://*.google-analytics.com/* *://connect.facebook.net/* *://platform.twitter.com/* *://code.jquery.com/* *://platform.linkedin.com/* *://*.disqus.com/* The extension stays dormant until you click the # icon. Then the extension starts listening to requests and blackholes the recognized ones. It shows a badge in the icon with how many scripts were blackholed and on mouseover shows you the URLs. Regarding the name... 3PO = 3rd Party Optimization. And #fail is kinda obvious.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | flodkodajoabgkfcgcengpkojhejfkfg |
Επίσημο URL | https://chromewebstore.google.com/detail/3pofail/flodkodajoabgkfcgcengpkojhejfkfg |
Περιγραφή | What happens to your site when 3rd party sites are down |
Μέγεθος Αρχείου | 43.77 KB |
Αριθμός Εγκαταστάσεων | 30 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2012-06-15 |
Ημερομηνία Δημοσίευσης | 2012-06-15 |
Προγραμματιστής | https://www.phpied.com |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "3PO#fail", "version": "1.0", "icons": { "16": "icon-on.png", "48": "icon48.png", "128": "icon128.png" }, "description": "What happens to your site when 3rd party sites are down", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*\/*" ], "background": { "scripts": [ "urls.js", "background.js" ] }, "browser_action": { "name": "fail", "default_title": "Click to blackhole 3rd parties", "default_icon": "icon-off.png" }, "manifest_version": 2 } |