Inject Javascript -- Synced & Open Source
Inject javascript in web pages, synced across your devices
Vad är Inject Javascript -- Synced & Open Source?
Inject Javascript -- Synced & Open Source är en Chrome-tillägg utvecklad av quentin.bramas, och dess huvudfunktion är "Inject javascript in web pages, synced across your devices".
Tilläggsskärmbilder
Ladda ner Inject Javascript -- Synced & Open Source-förlängningens CRX-fil
Ladda ner Inject Javascript -- Synced & Open Source-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | aechnpkbeoilkginaangjabdhcknecck |
| Officiell webbadress | https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck |
| Beskrivning | Inject javascript in web pages, synced across your devices |
| Filstorlek | 538 KB |
| Antal Installationer | 356 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2020-03-28 |
| Publiceringsdatum | 2020-03-26 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | quentin.bramas |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Bramas/Synced-Injected-Scripts |
| Stödda Språk | 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
} | |