Chrome Tasks

This extension replaces the new tab page with an app for managing Google Tasks

Τι είναι το Chrome Tasks;

Το Chrome Tasks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://www.codeboss.se, και η κύρια λειτουργία του είναι "This extension replaces the new tab page with an app for managing Google Tasks".

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

screenshot

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

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

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

                        Replaces the default new tab page in Chrome with an app for managing your google tasks.                    

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

Όνομα Chrome Tasks Chrome Tasks
ID kihfdbcaikfhlopdnaiokmogkhbofmgo
Επίσημο URL https://chrome.google.com/webstore/detail/chrome-tasks/kihfdbcaikfhlopdnaiokmogkhbofmgo
Περιγραφή This extension replaces the new tab page with an app for managing Google Tasks
Μέγεθος Αρχείου 477 KB
Αριθμός Εγκαταστάσεων 324
Τρέχουσα Έκδοση 0.1.1
Τελευταία Ενημέρωση 2015-06-10
Ημερομηνία Δημοσίευσης 2015-06-10
Αξιολόγηση 2.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής http://www.codeboss.se
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Tasks",
    "description": "This extension replaces the new tab page with an app for managing Google Tasks",
    "version": "0.1.1",
    "chrome_url_overrides": {
        "newtab": "myPage.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/robots.txt*"
            ],
            "js": [
                "oauth2\/oauth2_inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/www.googleapis.com\/",
        "https:\/\/accounts.google.com\/o\/oauth2\/token"
    ],
    "web_accessible_resources": [
        "oauth2\/oauth2.html"
    ]
}