Editorial Workflows

Tabs

public workflow

Install Workflow...

This workflow contains at least one Python script. Only use it if you trust the person who shared this with you, and if you know exactly what it does.

I understand, install the workflow!

This is a workflow for Editorial, a Markdown and plain text editor for iOS. To download it, you need to view this page on a device that has the app installed.

Description: Read iCloud Tabs as lines of a remote text file, and show them in a popover. Tap line to open the tab's URL in the Editorial browser.

Shared by: viticci

Comments: Comment Feed (RSS)

There are no comments yet.

+ Add Comment

Workflow Preview
Set Variable ?
Variable Name
URL
Value
http://vimini.macminicolo.net/enterprise-feeds-are-for-enterprise-people/alltabs.txt
Run Python Script ?
Source Code
import urllib2
import workflow

s = ''
URL = workflow.get_variable('URL')
response = urllib2.urlopen(URL)

for line in response:
	s += line.decode('utf-8')
	
workflow.set_output(s)
Remove Whitespace ?
  • Trim leading/trailing whitespace
  • Remove empty lines
Remove Duplicate Lines ?
Select from List ?
Title
iCloud Tabs
List (Lines)
Input
Multiple Selection
OFF
Show in Popover
ON
Open URL ?
Open in
  • In-App Browser
  • Default App / Safari
URL
Input
Tab
  • Last-used Tab
  • New Tab
  • Tab with ID:
Unique identifier
Wait until Loaded
OFF
Reveal Browser Automatically
ON