https://github.com/volatile-static/zotero-inspector
A DOM inspector for Zotero.
https://github.com/volatile-static/zotero-inspector
zotero-addon zotero-plugin
Last synced: about 1 year ago
JSON representation
A DOM inspector for Zotero.
- Host: GitHub
- URL: https://github.com/volatile-static/zotero-inspector
- Owner: volatile-static
- License: apache-2.0
- Created: 2022-09-04T14:44:55.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-08T06:27:54.000Z (almost 4 years ago)
- Last Synced: 2023-02-26T15:25:13.191Z (over 3 years ago)
- Topics: zotero-addon, zotero-plugin
- Language: JavaScript
- Homepage: https://gitee.com/const_volatile/zotero-inspector
- Size: 109 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zotero DOM Inspector
Add [dom-inspector](https://github.com/luoye-fe/dom-inspector) to Zotero.
## Brief
Add inspector to all html frames by one click.

## Usage
- main menu
- tools
- developer
- Show DOM Inspector

## Essential
```js
for (let i = 0; window.frames[i]; ++i)
inject(window.frames[i].document)
```