NoFap Panic Button
This extension provides an in browser version of the NoFap Emergency Relapse Prevention Tool.
Τι είναι το NoFap Panic Button;
Το NoFap Panic Button είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://nofap.com, και η κύρια λειτουργία του είναι "This extension provides an in browser version of the NoFap Emergency Relapse Prevention Tool.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης NoFap Panic Button
Λήψη αρχείων επέκτασης NoFap Panic Button σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Features: • Provides you with the most helpful content quickly when you need it the most. • An official NoFap® brand app. • Content is anything that might be inspirational for rebooters (people who want to quit porn), hand-selected from NoFap's network and around the Internet. • Enable or disable religious content. NoFap is a secular website that wants to help everybody quit porn, regardless of background. • Leverage our new "NSFWGuard" feature, which blocks and redirects you away from NSFW subreddits on reddit.com • Take the Panic Button with you wherever you go with the Popup Panic Button, an in-webpage version of the Panic Button for easy and quick access to motivational material How to Use: • NoFap's Panic Button tool will act as your companion that encourages you to stick to your goals during periods of distress. • NoFap's Panic Button tool provides different scenarios where urges may strike. Click on one of the options to view a relevant piece of content that will help you find the motivation to carry on. • If you need more content, just click a button again for a new link. • Once the urge passes, visit http://www.NoFap.com for additional support from your fellow rebooters. Follow Us: • You may find NoFap® at NoFap.com. NoFap® is also on social media such as Reddit (Reddit.com/r/NoFap), Twitter (Twitter.com/NoFap), and Facebook (Facebook.com/NoFap). Legal Information: Publisher: NoFap LLC, http://www.NoFap.com Developer: Mark Ropper NoFap® is a registered trademark owned by NoFap LLC. Patch Notes: Version 1.3.0 brings with it a raft of optimisations, updates and fixes! - NSFWGuard has been reworked to better intercept and divert you away from NSFW subreddits - The popup panic button accessible through the Action Button now includes a Religious quick-toggle button - But most importantly, this version brings with it the addition an in-webpage version of the panic button for even easier access to the motivation material you need!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | dgoanlacpjfionnlbhnecopndppgbkfo |
Επίσημο URL | https://chrome.google.com/webstore/detail/nofap-panic-button/dgoanlacpjfionnlbhnecopndppgbkfo |
Περιγραφή | This extension provides an in browser version of the NoFap Emergency Relapse Prevention Tool. |
Μέγεθος Αρχείου | 189 KB |
Αριθμός Εγκαταστάσεων | 3,000 |
Τρέχουσα Έκδοση | 1.3.3 |
Τελευταία Ενημέρωση | 2018-11-11 |
Ημερομηνία Δημοσίευσης | 2018-11-11 |
Αξιολόγηση | 4.42/5 Συνολικά 38 Αξιολογήσεις |
Προγραμματιστής | http://nofap.com |
Τύπος Πληρωμής | in_app |
Διεύθυνση URL της Σελίδας Βοήθειας | http://www.nofap.com/contact |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NoFap Panic Button", "description": "This extension provides an in browser version of the NoFap Emergency Relapse Prevention Tool.", "version": "1.3.3", "incognito": "spanning", "icons": { "16": "images\/icon16.png", "19": "images\/icon19.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "browser_action": { "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "webRequest", "webRequestBlocking", "storage", "notifications", "*:\/\/*.reddit.com\/r\/*", "*:\/\/*\/*" ], "background": { "scripts": [ "nsfwguard_webrequestlistener.js", "subredditDBLoad.js", "privacyUpdate.js" ] }, "web_accessible_resources": [ "popupbox.css", "popupbox.html" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "popupbox.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.reddit.com\/r\/*" ], "js": [ "nsfwguard_contentscript.js" ], "run_at": "document_start" } ], "content_security_policy": "script-src 'self'; object-src 'self';" } |