Asana Quick Search

Quickly search through Asana. Requires Asana Quick Add + extension to open tasks.

Co to jest Asana Quick Search?

Asana Quick Search to rozszerzenie Chrome opracowane przez Bazyli Brzóska, a jego główną funkcją jest „Quickly search through Asana. Requires Asana Quick Add + extension to open tasks.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Asana Quick Search

Pobierz pliki rozszerzeń Asana Quick Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Quickly search through Asana without switching or opening the Asana tab. 

It requires the 'Asana Quick Add +' extension to open tasks.

You can get that extension here: 
https://chrome.google.com/webstore/detail/asana-quick-add-%20/hchnkninfafagfbmaggdgiebngffgmfh

Possibility to open (multiple) tasks in a panel, other searches open in a new Asana tab.                    

Podstawowe informacje o rozszerzeniu

Nazwa Asana Quick Search Asana Quick Search
ID nagbddbjnlaickolplbdhelhojnpfmgn
Oficjalny URL https://chrome.google.com/webstore/detail/asana-quick-search/nagbddbjnlaickolplbdhelhojnpfmgn
Opis Quickly search through Asana. Requires Asana Quick Add + extension to open tasks.
Rozmiar pliku 26.45 KB
Liczba instalacji 39
Aktualna Wersja 0.9.9
Ostatnia Aktualizacja 2014-05-23
Data Publikacji 2014-05-23
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Bazyli Brzóska
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Asana Quick Search",
    "version": "0.9.9",
    "description": "Quickly search through Asana. Requires Asana Quick Add + extension to open tasks.",
    "minimum_chrome_version": "33",
    "background": {
        "persistent": true,
        "scripts": [
            "vendor\/regenerator-runtime.min.js",
            "lib\/chrome.api.async.common.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.asana.com\/*"
            ],
            "css": [],
            "js": [
                "vendor\/regenerator-runtime.min.js",
                "lib\/chrome.api.async.common.js",
                "foreground.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png"
        },
        "default_title": "Asana Quick Search",
        "default_popup": "popup.html"
    },
    "permissions": [
        "*:\/\/*.asana.com\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "web_accessible_resources": [
        "foreground.css",
        "escapeclose.js"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+Z"
            }
        }
    },
    "manifest_version": 2
}