Inject Javascript -- Synced & Open Source
Inject javascript in web pages, synced across your devices
什麼是Inject Javascript -- Synced & Open Source?
Inject Javascript -- Synced & Open Source是由quentin.bramas開發的Chrome擴展程式,該擴展的主要功能是“Inject javascript in web pages, synced across your devices”。
擴展截圖
下載Inject Javascript -- Synced & Open Source擴展crx文件
下載Inject Javascript -- Synced & Open Source擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension allows you to add custom js to any web page. Due to the critical risk of this kind of extension, I made this extension open source, and very small so that is it easy to check that it does not do anything bad. https://github.com/Bramas/Synced-Injected-Scripts Everything you type is automatically saved and synced. You can use call the function `injectLibs([lib1url, lib2url, ...], calllback)` to inject libraries before your script
擴展基本資訊
名稱 | Inject Javascript -- Synced & Open Source |
ID | aechnpkbeoilkginaangjabdhcknecck |
官方網址 | https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck |
簡介 | Inject javascript in web pages, synced across your devices |
檔案大小 | 538 KB |
安裝次數 | 356 |
目前版本 | 1.1 |
更新時間 | 2020-03-28 |
上架時間 | 2020-03-26 |
評分 | 5.00/5 共 1 次評分 |
開發者 | quentin.bramas |
付費類型 | free |
擴展官網 | https://github.com/Bramas/Synced-Injected-Scripts |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inject Javascript -- Synced & Open Source", "version": "1.1", "description": "Inject javascript in web pages, synced across your devices", "permissions": [ "activeTab", "storage" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "contentScript.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" } }, "icons": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" }, "manifest_version": 2 } |