Run Javascript
Run custom Javascript, each time you visit a website
什么是Run Javascript?
Run Javascript是由ao.ms开发的Chrome扩展程序,该扩展的主要功能是“Run custom Javascript, each time you visit a website”。
扩展截图
下载Run Javascript扩展crx文件
下载Run Javascript扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Run custom Javascript, each time you visit a website. This extension is particularly useful to web developers and people who like to tamper with websites they frequent by injecting additional javascript to manipulate the DOM. Add in any javascript you like and it will automatically be executed everytime you visit the website in the future. jQuery 3.3.1 is pre-loaded, so you can use all the $ magic immediately!
扩展基本信息
名称 | Run Javascript |
ID | lmilalhkkdhfieeienjbiicclobibjao |
官方URL | https://chromewebstore.google.com/detail/run-javascript/lmilalhkkdhfieeienjbiicclobibjao |
简介 | Run custom Javascript, each time you visit a website |
文件大小 | 2.18 MB |
安装次数 | 35,056 |
当前版本 | 1.11 |
更新时间 | 2023-08-14 |
上架时间 | 2020-05-23 |
评分 | 4.28/5 共40次评分 |
开发者 | ao.ms |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://ataiva.com/run-javascript-chrome-extension-help/?from=store |
帮助页面URL | https://ataiva.com/run-javascript-chrome-extension-help/?from=store |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Run Javascript", "description": "Run custom Javascript, each time you visit a website", "version": "1.11", "permissions": [ "storage", "activeTab" ], "browser_action": { "default_title": "Run Javascript", "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png", "96": "icon-96.png", "128": "icon-128.png", "256": "icon-256.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "lib_jquery_3_3_1.js", "lib_jquery_2_2_4.js", "lib_jquery_1_12_4.js" ], "js": [ "lib_jquery_3_3_1.js", "inject.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |