Refined Neko-Sama.fr
Une extension qui corrige et rend pleinement fonctionnelle la page d'animes de Neko-Sama.fr
Refined Neko-Sama.fr là gì?
Refined Neko-Sama.fr là một tiện ích mở rộng Chrome được phát triển bởi Astropilot, và tính năng chính của nó là "Une extension qui corrige et rend pleinement fonctionnelle la page d'animes de Neko-Sama.fr".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Refined Neko-Sama.fr
Tải xuống các tệp mở rộng Refined Neko-Sama.fr dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Cette extension permet de rendre entièrement fonctionnelle la page de recherche d'animés de Neko-Sama.fr Voici la liste des fonctionnalités: La recherche et la navigation entre les pages sont maintenant complètement dynamiques Les filtres Type, Status et Genres sont maintenant fonctionnels Ajout d'un filtre par année Un nouveau lecteur d'animé sans publicité !
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Refined Neko-Sama.fr |
ID | bkhfdimpfnkdmegkcniknicnpbpeklag |
URL Chính Thức | https://chromewebstore.google.com/detail/refined-neko-samafr/bkhfdimpfnkdmegkcniknicnpbpeklag |
Mô tả | Une extension qui corrige et rend pleinement fonctionnelle la page d'animes de Neko-Sama.fr |
Kích Thước Tệp | 1.62 MB |
Số Lần Cài Đặt | 496 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2020-09-21 |
Ngày Phát Hành | 2020-08-27 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Astropilot |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Astropilot/NekoSamaBetterFilters |
URL Trang Trợ Giúp | https://github.com/Astropilot/NekoSamaBetterFilters |
Ngôn Ngữ Được Hỗ Trợ | fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Refined Neko-Sama.fr", "version": "1.0.2", "description": "Une extension qui corrige et rend pleinement fonctionnelle la page d'animes de Neko-Sama.fr", "author": "Astropilot", "homepage_url": "https:\/\/github.com\/Astropilot\/NekoSamaBetterFilters", "minimum_chrome_version": "74", "browser_specific_settings": { "gecko": { "id": "[email protected]", "strict_min_version": "67.0" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_ui": { "page": "options\/options.html", "chrome_style": true }, "permissions": [ "storage", "webRequest", "webRequestBlocking", "*:\/\/*.neko-sama.fr\/*", "*:\/\/nekosama.codexus.fr\/*" ], "background": { "scripts": [ "web-request.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.neko-sama.fr\/anime", "https:\/\/www.neko-sama.fr\/anime?*" ], "run_at": "document_start", "js": [ "nekosama\/search\/hijack-js.js" ] }, { "matches": [ "https:\/\/www.neko-sama.fr\/anime", "https:\/\/www.neko-sama.fr\/anime?*" ], "run_at": "document_idle", "js": [ "nekosama\/search\/better-filters.js" ], "css": [ "nekosama\/search\/better-filters.css" ] }, { "matches": [ "https:\/\/www.neko-sama.fr\/anime\/info\/*" ], "run_at": "document_idle", "js": [ "nekosama\/anime\/anime-info.js" ] }, { "matches": [ "https:\/\/www.neko-sama.fr\/anime\/episode\/*" ], "run_at": "document_idle", "js": [ "nekosama\/episode\/anime-episode.js" ], "css": [ "nekosama\/episode\/anime-episode.css" ] }, { "matches": [ "https:\/\/www.neko-sama.fr\/anime\/episode\/*" ], "run_at": "document_start", "js": [ "nekosama\/episode\/hijack-js.js" ] } ], "web_accessible_resources": [ "nekosama\/search\/template.html" ] } |