Asset injector Google Chrome extension
Injects JS and CSS links for specific domains
什么是Asset injector Google Chrome extension?
Asset injector Google Chrome extension是由dimitry.mashkov开发的Chrome扩展程序,该扩展的主要功能是“Injects JS and CSS links for specific domains”。
扩展截图
下载Asset injector Google Chrome extension扩展crx文件
下载Asset injector Google Chrome extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Inserts specified CSS URL and/or JS URL Applies only to specified domain name
扩展基本信息
名称 | Asset injector Google Chrome extension |
ID | obpidgojggdbmochnlgiejlhiepgfmpb |
官方URL | https://chromewebstore.google.com/detail/asset-injector-google-chr/obpidgojggdbmochnlgiejlhiepgfmpb |
简介 | Injects JS and CSS links for specific domains |
文件大小 | 7.77 KB |
安装次数 | 163 |
当前版本 | 1.1 |
更新时间 | 2018-05-21 |
上架时间 | 2018-05-21 |
评分 | 4.00/5 共1次评分 |
开发者 | dimitry.mashkov |
付费类型 | free |
扩展官网 | https://github.com/dmitry-mashkov/chrome-asset-injector |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Asset injector Google Chrome extension", "version": "1.1", "description": "Injects JS and CSS links for specific domains", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "injector.servis.js" ] } ], "browser_action": { "default_icon": "images\/icon-disabled.png", "default_title": "Asset injector", "default_popup": "popup\/popup.html" }, "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "manifest_version": 2 } |