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
公式URL 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
Eメール [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"
    ]
}