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 拡張機能の基本情報
| 名前 | |
| ID | aechnpkbeoilkginaangjabdhcknecck |
| 公式URL | 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
} | |