Magnet linker
Extends magnet links to enable quick adding of torrents to Transmission via the RPC API.
Magnet linkerคืออะไร?
Magnet linker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rob Green และคุณลักษณะหลักของมันคือ "Extends magnet links to enable quick adding of torrents to Transmission via the RPC API."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Magnet linker
ดาวน์โหลดไฟล์ส่วนขยาย Magnet linker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Extends magnet links with a button that enables quick adding of torrents to Transmission via the RPC API. Allows the addition of custom HTML both before and after the button element based on a search of a websites URL, as well as adjustment of the div float on the button HTML.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Magnet linker |
ID | neokhcngmjnlbnphpfmiidlljbpffecd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/magnet-linker/neokhcngmjnlbnphpfmiidlljbpffecd |
คำอธิบาย | Extends magnet links to enable quick adding of torrents to Transmission via the RPC API. |
ขนาดไฟล์ | 879 KB |
จำนวนการติดตั้ง | 2,138 |
เวอร์ชันปัจจุบัน | 2.0.1.0 |
อัปเดตครั้งล่าสุด | 2022-04-02 |
วันที่เผยแพร่ | 2020-06-12 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Rob Green |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://trossr32.github.io/magnet-linker-browser-extension/ |
URL หน้าช่วยเหลือ | https://trossr32.github.io/magnet-linker-browser-extension/ |
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": "Magnet linker", "description": "Extends magnet links to enable quick adding of torrents to Transmission via the RPC API.", "version": "2.0.1.0", "browser_action": { "default_icon": "content\/assets\/images\/Transmission-faded.png", "default_popup": "popup.html" }, "browser_specific_settings": { "gecko": { "id": "[email protected]", "strict_min_version": "42.0" } }, "icons": { "16": "content\/assets\/images\/Transmission16.png", "48": "content\/assets\/images\/Transmission48.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:\/\/*\/*" ], "css": [ "content\/css\/bootstrap.tw.min.css", "content\/css\/content_script.css" ], "js": [ "content\/js\/jquery.min.js", "content\/js\/bootstrap.micro.min.js", "content\/js\/browser-polyfill.min.js", "content\/js\/core.js", "content\/js\/content_script.js" ] } ], "permissions": [ "storage", "tabs", " |