Sefaria Search

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

Qu'est-ce que Sefaria Search ?

Sefaria Search est une extension Chrome développée par itsho, et sa fonction principale est "Allow user to search within Sefaria, and extract links (''refs'')".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Sefaria Search

Téléchargez les fichiers d'extension Sefaria Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sefaria Search Sefaria Search
ID dbicdnakpagglfpbgnbikgjjokpffddp
URL Officiel https://chromewebstore.google.com/detail/sefaria-search/dbicdnakpagglfpbgnbikgjjokpffddp
Description Allow user to search within Sefaria, and extract links (''refs'')
Taille du Fichier 1010 KB
Nombre d'Installations 66
Version Actuelle 1.7.2017.1122
Dernière Mise à Jour 2017-11-22
Date de Publication 2017-11-22
Évaluation 4.00/5 Total 1 Évaluations
Développeur itsho
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}