Sefaria Search

Allow user to search within Sefaria, and extract links (''refs'')

Co to jest Sefaria Search?

Sefaria Search to rozszerzenie Chrome opracowane przez itsho, a jego główną funkcją jest „Allow user to search within Sefaria, and extract links (''refs'')”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Sefaria Search

Pobierz pliki rozszerzeń Sefaria 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

                        Allows you to search within Sefaria Project, and paste a direct link or paste the actual phrase into your active tab in Chrome.


Notice: the "paste" action does not work on non-HTML tabs such as home page of chrome or the settings page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Sefaria Search Sefaria Search
ID dbicdnakpagglfpbgnbikgjjokpffddp
Oficjalny URL https://chromewebstore.google.com/detail/sefaria-search/dbicdnakpagglfpbgnbikgjjokpffddp
Opis Allow user to search within Sefaria, and extract links (''refs'')
Rozmiar pliku 1010 KB
Liczba instalacji 66
Aktualna Wersja 1.7.2017.1122
Ostatnia Aktualizacja 2017-11-22
Data Publikacji 2017-11-22
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper itsho
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sefaria Search",
    "description": "Allow user to search within Sefaria, and extract links (''refs'')",
    "version": "1.7.2017.1122",
    "offline_enabled": false,
    "icons": {
        "128": "images\/search128.png"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "about.html"
    },
    "browser_action": {
        "default_icon": "images\/search32.png",
        "default_popup": "index.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "app\/app.js",
                "app\/popupCtrl.js",
                "app\/pasteToActiveTab.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}