Injecta
Inject JavaScript libraries into your current page.
什麼是Injecta?
Injecta是由Ian Macalinao開發的Chrome擴展程式,該擴展的主要功能是“Inject JavaScript libraries into your current page.”。
擴展截圖
下載Injecta擴展crx文件
下載Injecta擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Inject JavaScript libraries into any webpage with the click of a button.
Have you ever wanted to make a request on a page through the Chrome Developer console? Maybe you wanted to scrape a table using jQuery. Maybe you wish you had access to Lodash/Underscore's powerful comprehensions. Maybe you wanted the date processing capabilities of Moment or the functional elegance of Ramda.
With Injecta, you can now do this without having to copy/paste scripts into the console. Injecta allows you to inject pre-defined JavaScript libraries directly into webpages to give you full control of your webpages.
Source: https://github.com/simplyianm/injecta 擴展基本資訊
| 名稱 | |
| ID | gbndgddgajcmkogjonkgbcempddcbmca |
| 官方網址 | https://chrome.google.com/webstore/detail/injecta/gbndgddgajcmkogjonkgbcempddcbmca |
| 簡介 | Inject JavaScript libraries into your current page. |
| 檔案大小 | 91.68 KB |
| 安裝次數 | 140 |
| 目前版本 | 0.0.1 |
| 更新時間 | 2015-10-13 |
| 上架時間 | 2015-10-13 |
| 評分 | 5.00/5 共 4 次評分 |
| 開發者 | Ian Macalinao |
| 付費類型 | free |
| 擴展官網 | https://ian.pw |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Injecta",
"version": "0.0.1",
"manifest_version": 2,
"description": "Inject JavaScript libraries into your current page.",
"homepage_url": "https:\/\/ian.pw",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "assets\/icon19.png",
"38": "assets\/icon38.png"
},
"default_title": "Injecta",
"default_popup": "popup.html"
},
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"tabs"
],
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
} | |