Sefaria Search

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

Hvad er Sefaria Search?

Sefaria Search er en Chrome-udvidelse udviklet af itsho, og dens hovedfunktion er "Allow user to search within Sefaria, and extract links (''refs'')".

Udvidelsesskærmbilleder

screenshot

Download Sefaria Search-udvidelses-CRX-fil

Download Sefaria Search-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Sefaria Search Sefaria Search
ID dbicdnakpagglfpbgnbikgjjokpffddp
Officiel URL https://chromewebstore.google.com/detail/sefaria-search/dbicdnakpagglfpbgnbikgjjokpffddp
Beskrivelse Allow user to search within Sefaria, and extract links (''refs'')
Filstørrelse 1010 KB
Antal Installationer 66
Nuværende Version 1.7.2017.1122
Senest Opdateret 2017-11-22
Udgivelsesdato 2017-11-22
Bedømmelse 4.00/5 Samlet 1 Bedømmelser
Udvikler itsho
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}