Productivity Redirect

Redirect from distracting sites to productive ones. Block the bad ones. Link to the good ones. Disable easily.

Τι είναι το Productivity Redirect;

Το Productivity Redirect είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον simon.d.coffin, και η κύρια λειτουργία του είναι "Redirect from distracting sites to productive ones. Block the bad ones. Link to the good ones. Disable easily.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Productivity Redirect

Λήψη αρχείων επέκτασης Productivity Redirect σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        BRIEF:

Ever mindlessly switch tabs to a distracting website while working? Like Reddit, or Facebook?
This extension allows you to list out sites to block so you don't mindlessly surf the web when you should be working.

 - It catches you and redirects you to the extensions home page.
 - From there you can add and access links to more productive websites where you really ought to be.
 - Easily disable blocking when you don't need to be productive.
 - This is not so much a strict self control and blocking extension.
 - It's more targeted at catching you when you get distracted and helping you redirect your attention.

INSTALL:

 - On install a small white square with a "P" will appear to the right of your address bar.
 - Click it to access the Productivity Redirect page.


BLOCKING:

 - Navigate to "blocked" column on left.
 - Add full and valid URL of website to be blocked.
 - That URL and any additional paths from it will be blocked and redirected.
 - Enter name for the website.
 - You MUST enter both a URL and website name
 - Hit block or press enter.
 - To remove a site press the red "X" button to the left of the site name.


REDIRECTING:

 - Navigate to "redirect" column on right.
 - Add full and valid URL of website to redirect to.
 - Enter name for the website.
 - You MUST enter both a URL and website name.
 - Hit redirect or press enter.
 - To remove a site press the red "X" button to the left of the site name.
 
- Website names listed below are active hyperlinks.
 - Click one to redirect to the URL it represents.


BLOCKING STATUS:

 - Press button at bottom of page to change blocking status.
 - You can enable or disable blocking at any time without affecting you list of sites.

Enjoy!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Productivity Redirect Productivity Redirect
ID enafnibhbcldkgimogllklaibclchjii
Επίσημο URL https://chrome.google.com/webstore/detail/productivity-redirect/enafnibhbcldkgimogllklaibclchjii
Περιγραφή Redirect from distracting sites to productive ones. Block the bad ones. Link to the good ones. Disable easily.
Μέγεθος Αρχείου 84.08 KB
Αριθμός Εγκαταστάσεων 61
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2018-09-17
Ημερομηνία Δημοσίευσης 2018-09-17
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής simon.d.coffin
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "16": "p_16.png",
            "48": "p_48.png",
            "128": "p_128.png"
        }
    },
    "name": "Productivity Redirect",
    "version": "1.1",
    "description": "Redirect from distracting sites to productive ones. Block the bad ones. Link to the good ones. Disable easily.",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "*:\/\/*\/redirect.html",
        "http:\/\/*\/*\/",
        "https:\/\/*\/*\/",
        "tabs"
    ],
    "web_accessible_resources": [
        "*.js",
        "*.html",
        "*\/redirect.html"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/redirect.html"
            ],
            "js": [
                "content.js",
                "interactive.js",
                "handlebars-v4.0.12.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "manifest_version": 2
}