Sonarr/Radarr/Lidarr autosearch

Exposes a context menu that enables direct searching for tv shows, movies and other text in Sonarr, Radarr, Lidarr and Readarr.

什麼是Sonarr/Radarr/Lidarr autosearch?

Sonarr/Radarr/Lidarr autosearch是由Rob Green開發的Chrome擴展程式,該擴展的主要功能是“Exposes a context menu that enables direct searching for tv shows, movies and other text in Sonarr, Radarr, Lidarr and Readarr.”。

擴展截圖

screenshot

下載Sonarr/Radarr/Lidarr autosearch擴展crx文件

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

擴展使用說明

                        Exposes a context menu that allows any highlighted text to be searched in Sonarr, Radarr or Lidarr instances. Allows a modified search URL to automate the search functionality on the add series, add movie or add artist pages. 

Adds Sonarr or Radarr icons as direct search links on various websites, including IMDb, Trakt and many more.                    

擴展基本資訊

名稱 Sonarr/Radarr/Lidarr autosearch Sonarr/Radarr/Lidarr autosearch
ID jmmjjcddjldjdjgckdiokhfokccdnekc
官方網址 https://chromewebstore.google.com/detail/sonarrradarrlidarr-autose/jmmjjcddjldjdjgckdiokhfokccdnekc
簡介 Exposes a context menu that enables direct searching for tv shows, movies and other text in Sonarr, Radarr, Lidarr and Readarr.
檔案大小 1.52 MB
安裝次數 2,624
目前版本 2.8.6.0
更新時間 2024-03-03
上架時間 2020-06-13
評分 4.40/5 共 15 次評分
開發者 Rob Green
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/trossr32/sonarr-radarr-lidarr-autosearch
說明頁面URL https://github.com/trossr32/sonarr-radarr-lidarr-autosearch
隱私政策頁面URL https://github.com/trossr32/sonarr-radarr-lidarr-autosearch-browser-extension/blob/master/PrivacyPolicy.md
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sonarr\/Radarr\/Lidarr autosearch",
    "description": "Exposes a context menu that enables direct searching for tv shows, movies and other text in Sonarr, Radarr, Lidarr and Readarr.",
    "version": "2.8.6.0",
    "browser_action": {
        "default_icon": "content\/assets\/images\/SonarrRadarrLidarr128.png",
        "default_popup": "popup.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "42.0"
        }
    },
    "icons": {
        "16": "content\/assets\/images\/SonarrRadarrLidarr16.png",
        "48": "content\/assets\/images\/SonarrRadarrLidarr48.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "content\/js\/jquery.min.js",
            "content\/js\/browser-polyfill.min.js",
            "content\/js\/core.js",
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content\/js\/jquery.min.js",
                "content\/js\/browser-polyfill.min.js",
                "content\/js\/core.js",
                "content\/js\/sonarr_radarr_lidarr_autosearch.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.imdb.com\/*",
        "*:\/\/*.themoviedb.org\/*",
        "*:\/\/*.thetvdb.com\/*",
        "*:\/\/*.trakt.tv\/*",
        "*:\/\/*.tvmaze.com\/*",
        "*:\/\/*.musicbrainz.org\/*",
        "*:\/\/*.letterboxd.com\/*",
        "*:\/\/*.pogdesign.co.uk\/*",
        "*:\/\/*.rottentomatoes.com\/*",
        "*:\/\/*.metacritic.com\/*",
        "*:\/\/*.simkl.com\/*",
        "*:\/\/*.iptorrents*",
        "*:\/\/*.last.fm\/*",
        "*:\/\/*.allocine.fr\/*",
        "*:\/\/*.myanimelist.net\/*",
        "*:\/\/*.betaseries.com\/*",
        "*:\/\/*.primevideo.com\/*",
        "",
        "storage",
        "activeTab",
        "contextMenus"
    ]
}