Sefaria Search

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

什麼是Sefaria Search?

Sefaria Search是由itsho開發的Chrome擴展程式,該擴展的主要功能是“Allow user to search within Sefaria, and extract links (''refs'')”。

擴展截圖

screenshot

下載Sefaria Search擴展crx文件

下載Sefaria Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Sefaria Search Sefaria Search
ID dbicdnakpagglfpbgnbikgjjokpffddp
官方網址 https://chromewebstore.google.com/detail/sefaria-search/dbicdnakpagglfpbgnbikgjjokpffddp
簡介 Allow user to search within Sefaria, and extract links (''refs'')
檔案大小 1010 KB
安裝次數 66
目前版本 1.7.2017.1122
更新時間 2017-11-22
上架時間 2017-11-22
評分 4.00/5 共 1 次評分
開發者 itsho
電子郵箱 [email protected]
付費類型 free
支援的語言 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
        }
    ]
}