Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- A bookmarklet is a browser bookmark with javascript: URL, that instead of opening a different webpage
- runs some code on the currently opened one. You can consider it a mini-extension/userscript of sorts.
- Usage: copy any "javascript:" line and set it as URL of a new bookmark (you may need to use Ctrl+Shift+O
- hotkey to open bookmarks manager). The suggested name for it can be found in the previous line (after "// ").
- */
- /* Each of these enables a backpack dialog (if it wasn't configured) with specified number of columns */
- // IntCyoa backpack (1 col)
- javascript:(function(){((app._backpack = app._backpack || app.__vue__.$store.state.app.backpack).length == 0) && (app.__vue__.$store.state.app.backpack = [{title: "Selected choices", titleText: "", template: "1", isInfoRow: true, isResultRow: true, objectWidth: 'col-md-12'}])})();
- // IntCyoa backpack (2 cols)
- javascript:(function(){((app._backpack = app._backpack || app.__vue__.$store.state.app.backpack).length == 0) && (app.__vue__.$store.state.app.backpack = [{title: "Selected choices", titleText: "", template: "1", isInfoRow: true, isResultRow: true, objectWidth: 'col-md-6'}])})();
- // IntCyoa backpack (3 cols)
- javascript:(function(){((app._backpack = app._backpack || app.__vue__.$store.state.app.backpack).length == 0) && (app.__vue__.$store.state.app.backpack = [{title: "Selected choices", titleText: "", template: "1", isInfoRow: true, isResultRow: true, objectWidth: 'col-md-4'}])})();
- // IntCyoa backpack (4 cols)
- javascript:(function(){((app._backpack = app._backpack || app.__vue__.$store.state.app.backpack).length == 0) && (app.__vue__.$store.state.app.backpack = [{title: "Selected choices", titleText: "", template: "1", isInfoRow: true, isResultRow: true, objectWidth: 'col-md-3'}])})();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement