Lash Story Board
Manipulate the DOM when the page is done loading
Co to jest Lash Story Board?
Lash Story Board to rozszerzenie Chrome opracowane przez Anand Patel, a jego główną funkcją jest „Manipulate the DOM when the page is done loading”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Lash Story Board
Pobierz pliki rozszerzeń Lash Story Board w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension allows to inject Story Board link into DOM for TFS Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ambbkmfmmaacpmkgmdoigkcpnjhbaebc |
| Oficjalny URL | https://chromewebstore.google.com/detail/lash-story-board/ambbkmfmmaacpmkgmdoigkcpnjhbaebc |
| Opis | Manipulate the DOM when the page is done loading |
| Rozmiar pliku | 24.32 KB |
| Liczba instalacji | 10 |
| Aktualna Wersja | 8 |
| Ostatnia Aktualizacja | 2015-04-28 |
| Data Publikacji | 2015-04-28 |
| Deweloper | Anand Patel |
| Typ Płatności | free |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Lash Story Board",
"version": "8",
"manifest_version": 2,
"description": "Manipulate the DOM when the page is done loading",
"background": {
"pages": [
"background.html"
]
},
"browser_action": {
"name": "Manipulate DOM",
"icons": [
"icon.png"
],
"default_icon": "icon.png"
},
"content_scripts": [
{
"js": [
"jquery.min.js",
"background.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
]
} | |